Skip to content

Commit 1d2e79a

Browse files
ci(deps): bump actions/cache from 4 to 5 (#25)
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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 99b05fc commit 1d2e79a

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
toolchain: ${{ matrix.rust }}
3434

3535
- name: Cache cargo registry
36-
uses: actions/cache@v4
36+
uses: actions/cache@v5
3737
with:
3838
path: |
3939
~/.cargo/registry
@@ -87,7 +87,7 @@ jobs:
8787
components: clippy
8888

8989
- name: Cache cargo registry
90-
uses: actions/cache@v4
90+
uses: actions/cache@v5
9191
with:
9292
path: |
9393
~/.cargo/registry
@@ -109,7 +109,7 @@ jobs:
109109
uses: dtolnay/rust-toolchain@nightly
110110

111111
- name: Cache cargo registry
112-
uses: actions/cache@v4
112+
uses: actions/cache@v5
113113
with:
114114
path: |
115115
~/.cargo/registry

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: cargo install cargo-tarpaulin
2828

2929
- name: Cache cargo registry
30-
uses: actions/cache@v4
30+
uses: actions/cache@v5
3131
with:
3232
path: |
3333
~/.cargo/registry

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
uses: dtolnay/rust-toolchain@stable
3131

3232
- name: Cache cargo registry
33-
uses: actions/cache@v4
33+
uses: actions/cache@v5
3434
with:
3535
path: |
3636
~/.cargo/registry
@@ -70,7 +70,7 @@ jobs:
7070
uses: dtolnay/rust-toolchain@stable
7171

7272
- name: Cache cargo registry
73-
uses: actions/cache@v4
73+
uses: actions/cache@v5
7474
with:
7575
path: |
7676
~/.cargo/registry

.github/workflows/security.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- uses: actions/checkout@master
5050
- name: Install Rust
5151
run: rustup update stable && rustup default stable
52-
- uses: actions/cache@v4
52+
- uses: actions/cache@v5
5353
with:
5454
path: ${{ runner.tool_cache }}/cargo-vet
5555
key: cargo-vet-bin-${{ env.CARGO_VET_VERSION }}

0 commit comments

Comments
 (0)