Skip to content

Commit 3699f6e

Browse files
ci(deps): 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 4783f58 commit 3699f6e

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
components: clippy, rustfmt
2525

2626
- name: Cache cargo registry and index
27-
uses: actions/cache@v4
27+
uses: actions/cache@v5
2828
with:
2929
path: |
3030
~/.cargo/registry/index/
@@ -35,7 +35,7 @@ jobs:
3535
${{ runner.os }}-cargo-
3636
3737
- name: Cache target directory
38-
uses: actions/cache@v4
38+
uses: actions/cache@v5
3939
with:
4040
path: target/
4141
key: ${{ runner.os }}-target-${{ hashFiles('**/Cargo.lock') }}
@@ -67,7 +67,7 @@ jobs:
6767
uses: dtolnay/rust-toolchain@stable
6868

6969
- name: Cache cargo registry and index
70-
uses: actions/cache@v4
70+
uses: actions/cache@v5
7171
with:
7272
path: |
7373
~/.cargo/registry/index/
@@ -78,7 +78,7 @@ jobs:
7878
${{ runner.os }}-cargo-
7979
8080
- name: Cache target directory
81-
uses: actions/cache@v4
81+
uses: actions/cache@v5
8282
with:
8383
path: target/
8484
key: ${{ runner.os }}-target-${{ hashFiles('**/Cargo.lock') }}

.github/workflows/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: dtolnay/rust-toolchain@stable
2323

2424
- name: Cache cargo registry and index
25-
uses: actions/cache@v4
25+
uses: actions/cache@v5
2626
with:
2727
path: |
2828
~/.cargo/registry/index/

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
targets: ${{ matrix.target }}
5555

5656
- name: Cache cargo registry and index
57-
uses: actions/cache@v4
57+
uses: actions/cache@v5
5858
with:
5959
path: |
6060
~/.cargo/registry/index/
@@ -65,7 +65,7 @@ jobs:
6565
${{ runner.os }}-${{ matrix.target }}-cargo-
6666
6767
- name: Cache target directory
68-
uses: actions/cache@v4
68+
uses: actions/cache@v5
6969
with:
7070
path: target/
7171
key: ${{ runner.os }}-${{ matrix.target }}-target-${{ hashFiles('**/Cargo.lock') }}

0 commit comments

Comments
 (0)