Skip to content

Commit e665290

Browse files
Bump actions/cache from 5 to 6 in the github-actions group
Bumps the github-actions group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `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 dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 255a67a commit e665290

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ jobs:
2424
toolchain: "1.91.1" # MSRV
2525

2626
- name: Cache cargo registry
27-
uses: actions/cache@v5
27+
uses: actions/cache@v6
2828
with:
2929
path: ~/.cargo/registry
3030
key: ${{ runner.os }}-cargo-registry-${{ steps.toolchain.outputs.cachekey }}-${{ hashFiles('**/Cargo.lock') }}
3131

3232
- name: Cache cargo build
33-
uses: actions/cache@v5
33+
uses: actions/cache@v6
3434
with:
3535
path: target
3636
key: ${{ runner.os }}-cargo-build-target-${{ steps.toolchain.outputs.cachekey }}-${{ hashFiles('**/Cargo.lock') }}

.github/workflows/release-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
id: toolchain
1111

1212
- name: Cache cargo registry
13-
uses: actions/cache@v5
13+
uses: actions/cache@v6
1414
with:
1515
path: ~/.cargo/registry
1616
key: ${{ runner.os }}-cargo-registry-${{ steps.toolchain.outputs.cachekey }}-${{ hashFiles('**/Cargo.lock') }}

.github/workflows/tests.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ jobs:
5050
id: toolchain
5151

5252
- name: Cache cargo registry
53-
uses: actions/cache@v5
53+
uses: actions/cache@v6
5454
with:
5555
path: ~/.cargo/registry
5656
key: ${{ runner.os }}-cargo-registry-${{ steps.toolchain.outputs.cachekey }}-${{ hashFiles('**/Cargo.lock') }}
5757

5858
- name: Cache cargo build
59-
uses: actions/cache@v5
59+
uses: actions/cache@v6
6060
with:
6161
path: target
6262
key: ${{ runner.os }}-cargo-build-target-${{ steps.toolchain.outputs.cachekey }}-${{ hashFiles('**/Cargo.lock') }}
@@ -77,13 +77,13 @@ jobs:
7777
id: toolchain
7878

7979
- name: Cache cargo registry
80-
uses: actions/cache@v5
80+
uses: actions/cache@v6
8181
with:
8282
path: ~/.cargo/registry
8383
key: ${{ runner.os }}-cargo-registry-${{ steps.toolchain.outputs.cachekey }}-${{ hashFiles('**/Cargo.lock') }}
8484

8585
- name: Cache cargo build
86-
uses: actions/cache@v5
86+
uses: actions/cache@v6
8787
with:
8888
path: target
8989
key: ${{ runner.os }}-cargo-build-target-${{ steps.toolchain.outputs.cachekey }}-${{ hashFiles('**/Cargo.lock') }}
@@ -109,13 +109,13 @@ jobs:
109109
toolchain: "1.91.1" # MSRV
110110

111111
- name: Cache cargo registry
112-
uses: actions/cache@v5
112+
uses: actions/cache@v6
113113
with:
114114
path: ~/.cargo/registry
115115
key: ${{ runner.os }}-cargo-registry-${{ steps.toolchain.outputs.cachekey }}-${{ hashFiles('**/Cargo.lock') }}
116116

117117
- name: Cache cargo build
118-
uses: actions/cache@v5
118+
uses: actions/cache@v6
119119
with:
120120
path: target
121121
key: ${{ runner.os }}-cargo-build-target-${{ steps.toolchain.outputs.cachekey }}-${{ hashFiles('**/Cargo.lock') }}

0 commit comments

Comments
 (0)