Skip to content

Commit 42306ca

Browse files
chore(deps): bump actions/cache from 4 to 5 (#57)
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 8165e10 commit 42306ca

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
with:
6262
tool: cargo-llvm-cov
6363
- name: Cache cargo registry
64-
uses: actions/cache@v4
64+
uses: actions/cache@v5
6565
with:
6666
path: |
6767
~/.cargo/registry
@@ -117,7 +117,7 @@ jobs:
117117
toolchain: stable
118118
targets: ${{ matrix.settings.target }}
119119
- name: Cache cargo
120-
uses: actions/cache@v4
120+
uses: actions/cache@v5
121121
with:
122122
path: |
123123
~/.cargo/registry/index/
@@ -301,7 +301,7 @@ jobs:
301301
rustup component add clippy rustfmt
302302
303303
- name: Cache cargo registry
304-
uses: actions/cache@v4
304+
uses: actions/cache@v5
305305
with:
306306
path: |
307307
~/.cargo/registry
@@ -312,7 +312,7 @@ jobs:
312312
${{ runner.os }}-cargo-
313313
314314
- name: Cache cargo tools
315-
uses: actions/cache@v4
315+
uses: actions/cache@v5
316316
with:
317317
path: ~/.cargo/bin
318318
key: ${{ runner.os }}-cargo-tools-deny-${{ env.CARGO_DENY_VERSION }}-audit-${{ env.CARGO_AUDIT_VERSION }}-about-${{ env.CARGO_ABOUT_VERSION }}

.github/workflows/dependabot-auto-approve.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
rustup default stable
3030
3131
- name: Cache cargo tools
32-
uses: actions/cache@v4
32+
uses: actions/cache@v5
3333
with:
3434
path: ~/.cargo/bin
3535
key: ${{ runner.os }}-cargo-tools-about-${{ env.CARGO_ABOUT_VERSION }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ jobs:
133133
toolchain: stable
134134
targets: ${{ matrix.settings.target }}
135135
- name: Cache cargo
136-
uses: actions/cache@v4
136+
uses: actions/cache@v5
137137
with:
138138
path: |
139139
~/.cargo/registry/index/

.github/workflows/security-audit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
rustup default stable
2929
3030
- name: Cache cargo registry
31-
uses: actions/cache@v4
31+
uses: actions/cache@v5
3232
with:
3333
path: |
3434
~/.cargo/registry
@@ -39,7 +39,7 @@ jobs:
3939
${{ runner.os }}-audit-cargo-
4040
4141
- name: Cache cargo tools
42-
uses: actions/cache@v4
42+
uses: actions/cache@v5
4343
with:
4444
path: ~/.cargo/bin
4545
key: ${{ runner.os }}-cargo-tools-deny-${{ env.CARGO_DENY_VERSION }}-audit-${{ env.CARGO_AUDIT_VERSION }}

0 commit comments

Comments
 (0)