3
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2026-01-30 15:37:56 +00:00

docs: Update other actions in examples to the latest version

This commit is contained in:
XZTDean 2025-12-15 06:34:21 -08:00
parent de99935c0c
commit 5b7a9f8ae5
5 changed files with 16 additions and 16 deletions

View file

@ -35,7 +35,7 @@ If you are using separate jobs to create and save your cache(s) to be reused by
```yaml
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: actions/cache/restore@v5
id: cache
@ -64,7 +64,7 @@ In case of multi-module projects, where the built artifact of one project needs
```yaml
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Build
run: /build-parent-module.sh
@ -80,7 +80,7 @@ steps:
```yaml
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: actions/cache/restore@v5
id: cache
@ -107,7 +107,7 @@ To fail if there is no cache hit for the primary key, leave `restore-keys` empty
```yaml
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: actions/cache/restore@v5
id: cache