Skip to content

Commit adbb342

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

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/run_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,23 @@ jobs:
1616
- uses: actions/checkout@v5
1717

1818
- name: Cache Cargo registry
19-
uses: actions/cache@v3
19+
uses: actions/cache@v4
2020
with:
2121
path: ~/.cargo/registry
2222
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
2323
restore-keys: |
2424
${{ runner.os }}-cargo-registry-
2525
2626
- name: Cache Cargo index
27-
uses: actions/cache@v3
27+
uses: actions/cache@v4
2828
with:
2929
path: ~/.cargo/git
3030
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
3131
restore-keys: |
3232
${{ runner.os }}-cargo-index-
3333
3434
- name: Cache Cargo build
35-
uses: actions/cache@v3
35+
uses: actions/cache@v4
3636
with:
3737
path: target
3838
key: ${{ runner.os }}-cargo-build-${{ hashFiles('**/Cargo.lock') }}

0 commit comments

Comments
 (0)