Skip to content

Commit 6e6e18d

Browse files
build(deps): bump actions/cache from 4 to 5 (#5701)
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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 7b5720c commit 6e6e18d

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/ci-cache-warmup.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
targets: x86_64-pc-windows-gnu,x86_64-pc-windows-msvc
1919
components: rust-src
20-
- uses: actions/cache/restore@v4
20+
- uses: actions/cache/restore@v5
2121
with:
2222
# https://github.com/PyO3/maturin/discussions/1953
2323
path: ~/.cache/cargo-xwin
@@ -28,7 +28,7 @@ jobs:
2828
sudo apt-get install -y mingw-w64 llvm
2929
pip install nox
3030
nox -s test-cross-compilation-windows
31-
- uses: actions/cache/save@v4
31+
- uses: actions/cache/save@v5
3232
with:
3333
path: ~/.cache/cargo-xwin
3434
key: cargo-xwin-cache

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ jobs:
466466
with:
467467
node-version: 18
468468
- run: python -m pip install --upgrade pip && pip install nox[uv]
469-
- uses: actions/cache/restore@v4
469+
- uses: actions/cache/restore@v5
470470
id: cache
471471
with:
472472
path: |
@@ -480,7 +480,7 @@ jobs:
480480
run: nox -s build-emscripten
481481
- name: Test
482482
run: nox -s test-emscripten
483-
- uses: actions/cache/save@v4
483+
- uses: actions/cache/save@v5
484484
if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'CI-save-pr-cache') }}
485485
with:
486486
path: |
@@ -644,7 +644,7 @@ jobs:
644644
targets: x86_64-pc-windows-gnu,x86_64-pc-windows-msvc
645645
components: rust-src
646646
# load cache (prepared in ci-cache-warmup.yml)
647-
- uses: actions/cache/restore@v4
647+
- uses: actions/cache/restore@v5
648648
with:
649649
path: ~/.cache/cargo-xwin
650650
key: cargo-xwin-cache

.github/workflows/netlify-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
4242
- name: Restore lychee cache
4343
id: restore-cache
44-
uses: actions/cache/restore@v4
44+
uses: actions/cache/restore@v5
4545
with:
4646
path: .lycheecache
4747
key: lychee
@@ -57,7 +57,7 @@ jobs:
5757
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5858

5959
- name: Save lychee cache
60-
uses: actions/cache/save@v4
60+
uses: actions/cache/save@v5
6161
if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'CI-save-pr-cache') }}
6262
with:
6363
path: .lycheecache

0 commit comments

Comments
 (0)