Skip to content

Commit 4ff5ba2

Browse files
committed
Update to actions/cache@v5 and actions/upload-artifact@v6
1 parent 18a28f0 commit 4ff5ba2

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/abi-cafe.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
run: .github/scripts/free-disk-space.sh
5757

5858
- name: Cache cargo target dir
59-
uses: actions/cache@v4
59+
uses: actions/cache@v5
6060
with:
6161
path: build/cg_clif
6262
key: ${{ runner.os }}-${{ matrix.env.TARGET_TRIPLE }}-cargo-build-target-${{ hashFiles('rust-toolchain', '**/Cargo.lock') }}

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
run: cat /proc/cpuinfo
9696

9797
- name: Cache cargo target dir
98-
uses: actions/cache@v4
98+
uses: actions/cache@v5
9999
with:
100100
path: build/cg_clif
101101
key: ${{ runner.os }}-${{ matrix.env.TARGET_TRIPLE }}-cargo-build-target-${{ hashFiles('rust-toolchain.toml', '**/Cargo.lock') }}
@@ -165,7 +165,7 @@ jobs:
165165
run: cat /proc/cpuinfo
166166

167167
- name: Cache cargo target dir
168-
uses: actions/cache@v4
168+
uses: actions/cache@v5
169169
with:
170170
path: build/cg_clif
171171
key: ${{ runner.os }}-x86_64-unknown-linux-gnu-cargo-build-target-${{ hashFiles('rust-toolchain.toml', '**/Cargo.lock') }}
@@ -214,7 +214,7 @@ jobs:
214214
- uses: actions/checkout@v6
215215

216216
- name: Cache cargo target dir
217-
uses: actions/cache@v4
217+
uses: actions/cache@v5
218218
with:
219219
path: build/cg_clif
220220
key: ${{ runner.os }}-${{ matrix.env.TARGET_TRIPLE }}-dist-cargo-build-target-${{ hashFiles('rust-toolchain.toml', '**/Cargo.lock') }}
@@ -233,7 +233,7 @@ jobs:
233233
run: tar cvfJ cg_clif.tar.xz dist
234234

235235
- name: Upload prebuilt cg_clif
236-
uses: actions/upload-artifact@v4
236+
uses: actions/upload-artifact@v6
237237
with:
238238
name: cg_clif-${{ matrix.env.TARGET_TRIPLE }}
239239
path: cg_clif.tar.xz

.github/workflows/rustc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
run: cat /proc/cpuinfo
1818

1919
- name: Cache cargo target dir
20-
uses: actions/cache@v4
20+
uses: actions/cache@v5
2121
with:
2222
path: build/cg_clif
2323
key: ${{ runner.os }}-rustc-test-cargo-build-target-${{ hashFiles('rust-toolchain.toml', 'Cargo.lock') }}
@@ -37,7 +37,7 @@ jobs:
3737
run: cat /proc/cpuinfo
3838

3939
- name: Cache cargo target dir
40-
uses: actions/cache@v4
40+
uses: actions/cache@v5
4141
with:
4242
path: build/cg_clif
4343
key: ${{ runner.os }}-rustc-test-cargo-build-target-${{ hashFiles('rust-toolchain.toml', 'Cargo.lock') }}

0 commit comments

Comments
 (0)