Skip to content

Commit bc19737

Browse files
authored
Use latest cache action (#1411)
1 parent d2a6677 commit bc19737

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/actions/setup-llvm-mingw/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ runs:
1919
- name: Cache llvm-mingw (Windows)
2020
id: cache-llvm
2121
if: runner.os == 'Windows'
22-
uses: actions/cache@v3
22+
uses: actions/cache@v4
2323
with:
2424
path: .llvm-mingw
2525
key: llvm-mingw-${{ runner.os }}-${{ inputs.llvm-mingw-version }}-${{ inputs.host-arch }}
@@ -50,7 +50,7 @@ runs:
5050
- name: Cache llvm-mingw (Linux)
5151
id: cache-llvm-linux
5252
if: runner.os == 'Linux'
53-
uses: actions/cache@v3
53+
uses: actions/cache@v4
5454
with:
5555
path: /opt/llvm-mingw
5656
key: llvm-mingw-${{ runner.os }}-${{ inputs.llvm-mingw-version }}-${{ inputs.host-arch }}

.github/actions/setup-llvm-msvc/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ runs:
1414
steps:
1515
- name: Cache LLVM and tools
1616
id: cache-llvm
17-
uses: actions/cache@v3
17+
uses: actions/cache@v4
1818
with:
1919
path: |
2020
.LLVM

0 commit comments

Comments
 (0)