Skip to content

Commit c561de8

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

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/run_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,23 +19,23 @@ jobs:
1919
- uses: actions/checkout@v7
2020

2121
- name: Cache Cargo registry
22-
uses: actions/cache@v5
22+
uses: actions/cache@v6
2323
with:
2424
path: ~/.cargo/registry
2525
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
2626
restore-keys: |
2727
${{ runner.os }}-cargo-registry-
2828
2929
- name: Cache Cargo index
30-
uses: actions/cache@v5
30+
uses: actions/cache@v6
3131
with:
3232
path: ~/.cargo/git
3333
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
3434
restore-keys: |
3535
${{ runner.os }}-cargo-index-
3636
3737
- name: Cache Cargo build
38-
uses: actions/cache@v5
38+
uses: actions/cache@v6
3939
with:
4040
path: target
4141
key: ${{ runner.os }}-cargo-build-${{ hashFiles('**/Cargo.lock') }}

0 commit comments

Comments
 (0)