Skip to content

Commit 30bc545

Browse files
committed
ci: upgrade some upload-artifact/download-artifact actions
v4 can't download from v3 uploaded artifacts. So we need to pair these. v4 upload is held back on final release artifact and container images because of a breaking change related to multi-uploads.
1 parent 05d3827 commit 30bc545

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/apple.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
cargo build --release
3232
3333
- name: Upload pythonbuild Executable
34-
uses: actions/upload-artifact@v3
34+
uses: actions/upload-artifact@v4
3535
with:
3636
name: pythonbuild
3737
path: target/release/pythonbuild
@@ -174,7 +174,7 @@ jobs:
174174
python-version: '3.11'
175175

176176
- name: Download pythonbuild
177-
uses: actions/download-artifact@v3
177+
uses: actions/download-artifact@v4
178178
with:
179179
name: pythonbuild
180180
path: build

.github/workflows/linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
cargo build --release
3737
3838
- name: Upload pythonbuild Executable
39-
uses: actions/upload-artifact@v3
39+
uses: actions/upload-artifact@v4
4040
with:
4141
name: pythonbuild
4242
path: target/release/pythonbuild
@@ -902,7 +902,7 @@ jobs:
902902
python-version: '3.11'
903903

904904
- name: Download pythonbuild
905-
uses: actions/download-artifact@v3
905+
uses: actions/download-artifact@v4
906906
with:
907907
name: pythonbuild
908908
path: build

.github/workflows/windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
cargo build --release
3232
3333
- name: Upload executable
34-
uses: actions/upload-artifact@v3
34+
uses: actions/upload-artifact@v4
3535
with:
3636
name: pythonbuild
3737
path: target/release/pythonbuild.exe
@@ -70,7 +70,7 @@ jobs:
7070
python-version: '3.11'
7171

7272
- name: Download pythonbuild Executable
73-
uses: actions/download-artifact@v3
73+
uses: actions/download-artifact@v4
7474
with:
7575
name: pythonbuild
7676

0 commit comments

Comments
 (0)