Skip to content

Commit 264f8c6

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 15b88d7 commit 264f8c6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/rust.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
id: msrv-toolchain
8989
if: matrix.rust.name == 'MSRV'
9090
# on non-msrv runs, use one cache key ...
91-
- uses: actions/cache@v4
91+
- uses: actions/cache@v5
9292
with:
9393
path: |
9494
~/.cargo/git
@@ -97,7 +97,7 @@ jobs:
9797
key: "${{runner.os}} Rust ${{steps.rust-toolchain.outputs.cachekey}}"
9898
if: matrix.rust.name != 'MSRV'
9999
# ... and on msrv runs, use another
100-
- uses: actions/cache@v4
100+
- uses: actions/cache@v5
101101
with:
102102
path: |
103103
~/.cargo/git
@@ -157,7 +157,7 @@ jobs:
157157
with:
158158
toolchain: ${{matrix.rust.toolchain}}
159159
id: rust-toolchain
160-
- uses: actions/cache@v4
160+
- uses: actions/cache@v5
161161
with:
162162
path: |
163163
~/.cargo/git
@@ -200,7 +200,7 @@ jobs:
200200
- name: Get Tarpaulin Version
201201
id: tarpaulin-version
202202
run: echo "version=$(wget -qO- 'https://crates.io/api/v1/crates/cargo-tarpaulin' | jq -r '.crate.max_stable_version')" >>$GITHUB_OUTPUT
203-
- uses: actions/cache@v4
203+
- uses: actions/cache@v5
204204
with:
205205
path: |
206206
~/.cargo/bin/cargo-tarpaulin

0 commit comments

Comments
 (0)