1
0
mirror of https://gitea.com/actions/cache.git synced 2026-02-02 13:54:30 +07: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

@@ -146,7 +146,7 @@ In case you are using a centralized job to create and save your cache that can b
```yaml
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: actions/cache/restore@v5
id: cache
@@ -171,7 +171,7 @@ You can use the output of this action to exit the workflow on cache miss. This w
```yaml
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: actions/cache/restore@v5
id: cache
@@ -253,7 +253,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
@@ -269,7 +269,7 @@ steps:
```yaml
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: actions/cache/restore@v5
id: cache