From baab618636a5f9740c3c8c8070b50202e5c27191 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Feb 2025 17:08:18 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 3 to 4 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](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 4 ++-- .github/workflows/docs.yml | 2 +- .github/workflows/release-plz.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9cc228f38c..ac9d588764 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -49,7 +49,7 @@ jobs: prefix-key: ${{ env.RUST_CACHE_PREFIX }} - name: Cache LLVM and Clang id: cache-llvm - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ runner.temp }}/llvm-${{ env.clang }} key: ubuntu-latest-llvm-${{ env.clang }} @@ -130,7 +130,7 @@ jobs: # LLVM & Clang - name: Cache LLVM and Clang id: cache-llvm - uses: actions/cache@v3 + uses: actions/cache@v4 # Macos build doesn't work with clang < 18. As a build for version 18 is not available, we skip the setup if: "!contains(matrix.os, 'windows') && !contains(matrix.os, 'macos')" with: diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index b9a4c6e1e6..322d4de00f 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -31,7 +31,7 @@ jobs: uses: dtolnay/rust-toolchain@nightly - name: Cache LLVM and Clang id: cache-llvm - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ runner.temp }}/llvm-${{ matrix.clang }} key: ${{ matrix.os }}-llvm-${{ matrix.clang }} diff --git a/.github/workflows/release-plz.yml b/.github/workflows/release-plz.yml index 3c35959393..bd7f044a62 100644 --- a/.github/workflows/release-plz.yml +++ b/.github/workflows/release-plz.yml @@ -33,7 +33,7 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Cache LLVM and Clang id: cache-llvm - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ runner.temp }}/llvm-${{ env.clang }} key: ubuntu-latest-llvm-${{ env.clang }}