mirror of
https://github.com/actions/cache.git
synced 2026-07-03 13:49:30 +00:00
docs(action): update v5 references to v6 and fix outdated dates
This commit is contained in:
parent
55cc834586
commit
c6d5b8bc74
4 changed files with 15 additions and 23 deletions
|
|
@ -37,7 +37,7 @@ If you are using separate jobs to create and save your cache(s) to be reused by
|
|||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
|
||||
- uses: actions/cache/restore@v5
|
||||
- uses: actions/cache/restore@v6
|
||||
id: cache
|
||||
with:
|
||||
path: path/to/dependencies
|
||||
|
|
@ -69,7 +69,7 @@ steps:
|
|||
- name: Build
|
||||
run: /build-parent-module.sh
|
||||
|
||||
- uses: actions/cache/save@v5
|
||||
- uses: actions/cache/save@v6
|
||||
id: cache
|
||||
with:
|
||||
path: path/to/dependencies
|
||||
|
|
@ -82,7 +82,7 @@ steps:
|
|||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
|
||||
- uses: actions/cache/restore@v5
|
||||
- uses: actions/cache/restore@v6
|
||||
id: cache
|
||||
with:
|
||||
path: path/to/dependencies
|
||||
|
|
@ -109,7 +109,7 @@ To fail if there is no cache hit for the primary key, leave `restore-keys` empty
|
|||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
|
||||
- uses: actions/cache/restore@v5
|
||||
- uses: actions/cache/restore@v6
|
||||
id: cache
|
||||
with:
|
||||
path: path/to/dependencies
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue