Skip to content

Commit ec23baf

Browse files
Bump actions/cache from 4 to 5
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent d6c6919 commit ec23baf

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/validations.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
# why not use actions/upload-artifact? It is very slow (3 minutes to upload ~600MB of data, vs 10 seconds with this approach).
6868
# see https://github.com/actions/upload-artifact/issues/199 for more info
6969
- name: Upload snapshot artifacts
70-
uses: actions/cache/save@v4
70+
uses: actions/cache/save@v5
7171
with:
7272
path: snapshot
7373
key: snapshot-build-${{ github.run_id }}
@@ -86,7 +86,7 @@ jobs:
8686
- uses: actions/checkout@master
8787

8888
- name: Download snapshot build
89-
uses: actions/cache/restore@v4
89+
uses: actions/cache/restore@v5
9090
with:
9191
path: snapshot
9292
key: snapshot-build-${{ github.run_id }}
@@ -108,7 +108,7 @@ jobs:
108108
- uses: actions/checkout@master
109109

110110
- name: Download snapshot build
111-
uses: actions/cache/restore@v4
111+
uses: actions/cache/restore@v5
112112
with:
113113
path: snapshot
114114
key: snapshot-build-${{ github.run_id }}

0 commit comments

Comments
 (0)