Skip to content

Commit af7e883

Browse files
chore(deps): bump actions/cache from 4 to 5 (#607)
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 a26c6ad commit af7e883

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
prefix-key: ${{ env.RUST_CACHE_PREFIX }}
5454
- name: Cache LLVM and Clang
5555
id: cache-llvm
56-
uses: actions/cache@v4
56+
uses: actions/cache@v5
5757
with:
5858
path: ${{ runner.temp }}/llvm-${{ env.clang }}
5959
key: ubuntu-latest-llvm-${{ env.clang }}
@@ -136,7 +136,7 @@ jobs:
136136
# LLVM & Clang
137137
- name: Cache LLVM and Clang
138138
id: cache-llvm
139-
uses: actions/cache@v4
139+
uses: actions/cache@v5
140140
# Macos build doesn't work with clang < 18. As a build for version 18 is not available, we skip the setup
141141
if: "!contains(matrix.os, 'windows') && !contains(matrix.os, 'macos')"
142142
with:
@@ -204,7 +204,7 @@ jobs:
204204

205205
- name: Cache LLVM and Clang
206206
id: cache-llvm
207-
uses: actions/cache@v4
207+
uses: actions/cache@v5
208208
with:
209209
path: ${{ runner.temp }}/llvm-${{ env.clang }}
210210
key: ubuntu-latest-llvm-${{ env.clang }}

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
prefix-key: ${{ env.RUST_CACHE_PREFIX }}
3939
- name: Cache LLVM and Clang
4040
id: cache-llvm
41-
uses: actions/cache@v4
41+
uses: actions/cache@v5
4242
with:
4343
path: ${{ runner.temp }}/llvm-${{ env.clang }}
4444
key: ubuntu-latest-llvm-${{ env.clang }}

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
uses: dtolnay/rust-toolchain@nightly
2727
- name: Cache LLVM and Clang
2828
id: cache-llvm
29-
uses: actions/cache@v4
29+
uses: actions/cache@v5
3030
with:
3131
path: ${{ runner.temp }}/llvm-${{ matrix.clang }}
3232
key: ${{ matrix.os }}-llvm-${{ matrix.clang }}

.github/workflows/release-plz.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
uses: dtolnay/rust-toolchain@stable
4343
- name: Cache LLVM and Clang
4444
id: cache-llvm
45-
uses: actions/cache@v4
45+
uses: actions/cache@v5
4646
with:
4747
path: ${{ runner.temp }}/llvm-${{ env.clang }}
4848
key: ubuntu-latest-llvm-${{ env.clang }}

0 commit comments

Comments
 (0)