Skip to content

Commit 4fde2e8

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 f4b11dd commit 4fde2e8

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
uses: actions/checkout@v6
1414

1515
- name: Cache cargo
16-
uses: actions/cache@v4
16+
uses: actions/cache@v5
1717
with:
1818
path: ~/.cargo
1919
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
2020
restore-keys: ${{ runner.os }}-cargo
2121

2222
- name: Cache cargo build
23-
uses: actions/cache@v4
23+
uses: actions/cache@v5
2424
with:
2525
path: target
2626
key: ${{ runner.os }}-stable-coverage-build-target-${{ hashFiles('**/Cargo.lock') }}

.github/workflows/rust-audit.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Cache cargo registry
10-
uses: actions/cache@v4
10+
uses: actions/cache@v5
1111
with:
1212
path: ~/.cargo/registry
1313
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
1414

1515
- name: Cache cargo index
16-
uses: actions/cache@v4
16+
uses: actions/cache@v5
1717
with:
1818
path: ~/.cargo/git
1919
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
2020

2121
- name: Cache cargo build
22-
uses: actions/cache@v4
22+
uses: actions/cache@v5
2323
with:
2424
path: target
2525
key: ${{ runner.os }}-stable-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}

.github/workflows/rust.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ jobs:
2929
submodules: "recursive"
3030

3131
- name: Cache cargo
32-
uses: actions/cache@v4
32+
uses: actions/cache@v5
3333
with:
3434
path: ~/.cargo
3535
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
3636
restore-keys: ${{ runner.os }}-cargo
3737

3838
- name: Cache cargo build
39-
uses: actions/cache@v4
39+
uses: actions/cache@v5
4040
with:
4141
path: target
4242
key: ${{ runner.os }}-${{ matrix.rust }}-build-target-${{ hashFiles('**/Cargo.lock') }}

0 commit comments

Comments
 (0)