Skip to content

Commit 0ca3292

Browse files
committed
compatible upload and download artifacts?
1 parent 77b4717 commit 0ca3292

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build_and_upload.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ jobs:
3131
CIBW_ARCHS_LINUX: "auto aarch64"
3232
CIBW_TEST_REQUIRES: "pytest"
3333
CIBW_TEST_COMMAND: "pytest {project}/tests --doctest-modules"
34-
- uses: "actions/upload-artifact@v3"
34+
- uses: "actions/upload-artifact@v4"
3535
with:
3636
path: "./wheelhouse/*.whl"
37-
37+
3838
make_sdist:
3939
name: "Build source distribution"
4040
runs-on: ubuntu-latest
@@ -44,7 +44,7 @@ jobs:
4444
submodules: true
4545
- name: "Build source distribution"
4646
run: "pipx run build --sdist"
47-
- uses: "actions/upload-artifact@v3"
47+
- uses: "actions/upload-artifact@v4"
4848
with:
4949
path: "./dist/*.tar.gz"
5050

@@ -56,7 +56,7 @@ jobs:
5656
- build_wheels
5757
- make_sdist
5858
steps:
59-
- uses: "actions/download-artifact@v4.1.7"
59+
- uses: "actions/download-artifact@v4"
6060
with:
6161
name: artifact
6262
path: dist

0 commit comments

Comments
 (0)