Skip to content

Commit b96625c

Browse files
chore(deps): bump actions/cache from 3 to 4 (#361)
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent fc46f4c commit b96625c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
prefix-key: ${{ env.RUST_CACHE_PREFIX }}
5050
- name: Cache LLVM and Clang
5151
id: cache-llvm
52-
uses: actions/cache@v3
52+
uses: actions/cache@v4
5353
with:
5454
path: ${{ runner.temp }}/llvm-${{ env.clang }}
5555
key: ubuntu-latest-llvm-${{ env.clang }}
@@ -130,7 +130,7 @@ jobs:
130130
# LLVM & Clang
131131
- name: Cache LLVM and Clang
132132
id: cache-llvm
133-
uses: actions/cache@v3
133+
uses: actions/cache@v4
134134
# Macos build doesn't work with clang < 18. As a build for version 18 is not available, we skip the setup
135135
if: "!contains(matrix.os, 'windows') && !contains(matrix.os, 'macos')"
136136
with:

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
uses: dtolnay/rust-toolchain@nightly
3232
- name: Cache LLVM and Clang
3333
id: cache-llvm
34-
uses: actions/cache@v3
34+
uses: actions/cache@v4
3535
with:
3636
path: ${{ runner.temp }}/llvm-${{ matrix.clang }}
3737
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
@@ -33,7 +33,7 @@ jobs:
3333
uses: dtolnay/rust-toolchain@stable
3434
- name: Cache LLVM and Clang
3535
id: cache-llvm
36-
uses: actions/cache@v3
36+
uses: actions/cache@v4
3737
with:
3838
path: ${{ runner.temp }}/llvm-${{ env.clang }}
3939
key: ubuntu-latest-llvm-${{ env.clang }}

0 commit comments

Comments
 (0)