Skip to content

Commit c44041b

Browse files
committed
bump cache action version
1 parent 346f9e1 commit c44041b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/common-setup/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ runs:
6666
echo "lib_dir=$lib_dir" >> "$GITHUB_ENV"
6767
6868
# Try to restore a LLVM install, and build it otherwise
69-
- uses: actions/cache/restore@v3
69+
- uses: actions/cache/restore@v4
7070
id: cache-llvm
7171
if: inputs.build-llvm == 'true'
7272
with:
@@ -77,7 +77,7 @@ runs:
7777
if: inputs.build-llvm == 'true' && steps.cache-llvm.outputs.cache-hit != 'true'
7878
shell: bash
7979
run: ./external/build-llvm.sh --install-prefix "${{ github.workspace }}/build/llvm-project-install"
80-
- uses: actions/cache/save@v3
80+
- uses: actions/cache/save@v4
8181
if: inputs.build-llvm == 'true' && steps.cache-llvm.outputs.cache-hit != 'true'
8282
with:
8383
path: ${{ github.workspace }}/build/llvm-project-install

0 commit comments

Comments
 (0)