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 }}