diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build-macos.yml | 2 | ||||
-rw-r--r-- | .github/workflows/linux.yml | 8 | ||||
-rw-r--r-- | .github/workflows/windows.yml | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 39789137d..135cedb85 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -47,7 +47,7 @@ jobs: uses: actions/cache@v3 id: cache-llvm-build with: - key: llvm-build-15-macos-v2 + key: llvm-build-15-macos-v3 path: llvm-build - name: Build LLVM if: steps.cache-llvm-build.outputs.cache-hit != 'true' diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 4de694b2c..413ffff96 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -57,7 +57,7 @@ jobs: uses: actions/cache@v3 id: cache-llvm-build with: - key: llvm-build-15-linux-alpine-v2 + key: llvm-build-15-linux-alpine-v3 path: llvm-build - name: Build LLVM if: steps.cache-llvm-build.outputs.cache-hit != 'true' @@ -186,7 +186,7 @@ jobs: uses: actions/cache@v3 id: cache-llvm-build with: - key: llvm-build-15-linux-asserts-v2 + key: llvm-build-15-linux-asserts-v3 path: llvm-build - name: Build LLVM if: steps.cache-llvm-build.outputs.cache-hit != 'true' @@ -272,7 +272,7 @@ jobs: uses: actions/cache@v3 id: cache-llvm-build with: - key: llvm-build-15-linux-arm-v2 + key: llvm-build-15-linux-arm-v3 path: llvm-build - name: Build LLVM if: steps.cache-llvm-build.outputs.cache-hit != 'true' @@ -372,7 +372,7 @@ jobs: uses: actions/cache@v3 id: cache-llvm-build with: - key: llvm-build-15-linux-arm64-v2 + key: llvm-build-15-linux-arm64-v3 path: llvm-build - name: Build LLVM if: steps.cache-llvm-build.outputs.cache-hit != 'true' diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index b16f56b9f..dd878fa16 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -49,7 +49,7 @@ jobs: uses: actions/cache@v3 id: cache-llvm-build with: - key: llvm-build-15-windows-v2 + key: llvm-build-15-windows-v3 path: llvm-build - name: Build LLVM if: steps.cache-llvm-build.outputs.cache-hit != 'true' |