Skip to content

Commit ffb07d2

Browse files
committed
Upgrade CI to use newer upload/download-artifact actions
1 parent 2208125 commit ffb07d2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
# Assemble release artifats appropriate for this platform, then upload them
5858
# unconditionally to this workflow's files so we have a copy of them.
5959
- run: ./ci/build-tarballs.sh "${{ matrix.build }}" "${{ matrix.target }}"
60-
- uses: actions/upload-artifact@v1
60+
- uses: actions/upload-artifact@v4
6161
with:
6262
name: bins-${{ matrix.build }}
6363
path: dist
@@ -69,27 +69,27 @@ jobs:
6969
# Download all the artifacts that we'll be publishing. Should keep an eye on
7070
# the `download-artifact` repository to see if we can ever get something
7171
# like "download all artifacts" or "download this list of artifacts"
72-
- uses: actions/download-artifact@v1
72+
- uses: actions/download-artifact@v4
7373
with:
7474
name: bins-x86_64-macos
7575
path: dist
76-
- uses: actions/download-artifact@v1
76+
- uses: actions/download-artifact@v4
7777
with:
7878
name: bins-aarch64-macos
7979
path: dist
80-
- uses: actions/download-artifact@v1
80+
- uses: actions/download-artifact@v4
8181
with:
8282
name: bins-x86_64-windows
8383
path: dist
84-
- uses: actions/download-artifact@v1
84+
- uses: actions/download-artifact@v4
8585
with:
8686
name: bins-x86_64-mingw
8787
path: dist
88-
- uses: actions/download-artifact@v1
88+
- uses: actions/download-artifact@v4
8989
with:
9090
name: bins-x86_64-linux
9191
path: dist
92-
- uses: actions/download-artifact@v1
92+
- uses: actions/download-artifact@v4
9393
with:
9494
name: bins-aarch64-linux
9595
path: dist

0 commit comments

Comments
 (0)