Skip to content

Commit 3000964

Browse files
Upgrade Artifacts Actions using @v3 to @v4 (#20)
* Upgrade to v4 * Upgrade to v4 * Upgrade to v4
1 parent b2060c0 commit 3000964

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
working-directory: risc0
4848

4949
- name: Archive build output
50-
uses: actions/upload-artifact@v3
50+
uses: actions/upload-artifact@v4
5151
with:
5252
name: rust-toolchain-${{ matrix.triple }}
5353
path: |

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
contents: write
1616
steps:
1717
- name: Download artifacts
18-
uses: actions/download-artifact@v3
18+
uses: actions/download-artifact@v4
1919
with:
2020
path: artifacts
2121
- name: Compress artifacts

compiler/rustc_codegen_cranelift/.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,14 +227,14 @@ jobs:
227227

228228
- name: Upload prebuilt cg_clif
229229
if: matrix.os == 'windows-latest' || matrix.env.TARGET_TRIPLE != 'x86_64-pc-windows-gnu'
230-
uses: actions/upload-artifact@v3
230+
uses: actions/upload-artifact@v4
231231
with:
232232
name: cg_clif-${{ matrix.env.TARGET_TRIPLE }}
233233
path: cg_clif.tar.xz
234234

235235
- name: Upload prebuilt cg_clif (cross compile)
236236
if: matrix.os != 'windows-latest' && matrix.env.TARGET_TRIPLE == 'x86_64-pc-windows-gnu'
237-
uses: actions/upload-artifact@v3
237+
uses: actions/upload-artifact@v4
238238
with:
239239
name: cg_clif-${{ runner.os }}-cross-x86_64-mingw
240240
path: cg_clif.tar.xz

0 commit comments

Comments
 (0)