Skip to content

Commit

Permalink
Use latest cache action (#1411)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoref committed Apr 5, 2024
1 parent d2a6677 commit bc19737
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/actions/setup-llvm-mingw/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ runs:
- name: Cache llvm-mingw (Windows)
id: cache-llvm
if: runner.os == 'Windows'
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .llvm-mingw
key: llvm-mingw-${{ runner.os }}-${{ inputs.llvm-mingw-version }}-${{ inputs.host-arch }}
Expand Down Expand Up @@ -50,7 +50,7 @@ runs:
- name: Cache llvm-mingw (Linux)
id: cache-llvm-linux
if: runner.os == 'Linux'
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: /opt/llvm-mingw
key: llvm-mingw-${{ runner.os }}-${{ inputs.llvm-mingw-version }}-${{ inputs.host-arch }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/setup-llvm-msvc/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ runs:
steps:
- name: Cache LLVM and tools
id: cache-llvm
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
.LLVM
Expand Down

0 comments on commit bc19737

Please sign in to comment.