Skip to content
This repository was archived by the owner on Mar 12, 2025. It is now read-only.

Commit 064058c

Browse files
Migrate from v3 to v4 for upload and download-artifact
1 parent a525188 commit 064058c

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/apple.yml

Lines changed: 3 additions & 3 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
@@ -151,7 +151,7 @@ jobs:
151151
python-version: '3.11'
152152

153153
- name: Download pythonbuild
154-
uses: actions/download-artifact@v3
154+
uses: actions/download-artifact@v4
155155
with:
156156
name: pythonbuild
157157
path: build
@@ -192,7 +192,7 @@ jobs:
192192
build/pythonbuild validate-distribution --macos-sdks-path macosx-sdks ${EXTRA_ARGS} dist/*.tar.zst
193193
194194
- name: Upload Distributions
195-
uses: actions/upload-artifact@v3
195+
uses: actions/upload-artifact@v4
196196
with:
197197
name: ${{ matrix.build.py }}-${{ matrix.build.target_triple }}
198198
path: dist/*

.github/workflows/linux.yml

Lines changed: 5 additions & 5 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
@@ -106,7 +106,7 @@ jobs:
106106
zstd -v -T0 -6 --rm build/image-*.tar
107107
108108
- name: Upload Docker Image
109-
uses: actions/upload-artifact@v3
109+
uses: actions/upload-artifact@v4
110110
with:
111111
name: images
112112
path: build/image-*
@@ -775,13 +775,13 @@ jobs:
775775
python-version: '3.11'
776776

777777
- name: Download pythonbuild
778-
uses: actions/download-artifact@v3
778+
uses: actions/download-artifact@v4
779779
with:
780780
name: pythonbuild
781781
path: build
782782

783783
- name: Download images
784-
uses: actions/download-artifact@v3
784+
uses: actions/download-artifact@v4
785785
with:
786786
name: images
787787
path: build
@@ -819,7 +819,7 @@ jobs:
819819
build/pythonbuild validate-distribution ${EXTRA_ARGS} dist/*.tar.zst
820820
821821
- name: Upload Distribution
822-
uses: actions/upload-artifact@v3
822+
uses: actions/upload-artifact@v4
823823
with:
824824
name: ${{ matrix.build.py }}-${{ matrix.build.target_triple }}
825825
path: dist/*

.github/workflows/windows.yml

Lines changed: 3 additions & 3 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
@@ -69,7 +69,7 @@ jobs:
6969
python-version: '3.11'
7070

7171
- name: Download pythonbuild Executable
72-
uses: actions/download-artifact@v3
72+
uses: actions/download-artifact@v4
7373
with:
7474
name: pythonbuild
7575

@@ -91,7 +91,7 @@ jobs:
9191
.\pythonbuild.exe validate-distribution --run $Dists
9292
9393
- name: Upload Distributions
94-
uses: actions/upload-artifact@v3
94+
uses: actions/upload-artifact@v4
9595
with:
9696
name: ${{ matrix.py }}-${{ matrix.vcvars }}
9797
path: dist/*

0 commit comments

Comments
 (0)