Skip to content

Commit 574a341

Browse files
committed
CI: Use latest version of upload-artifact to hopefully avoid spurious "an
artifact with this name already exists on the workflow run" errors
1 parent 3d75e6e commit 574a341

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: .github/workflows/release.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Build sdist
2727
run: python setup.py sdist
2828

29-
- uses: actions/upload-artifact@v4
29+
- uses: actions/upload-artifact@@v4.4.3
3030
with:
3131
name: sdist
3232
path: ./dist/*.tar.gz
@@ -49,7 +49,7 @@ jobs:
4949
- name: Build wheels
5050
run: bash ./.ci/build_wheels.sh
5151

52-
- uses: actions/upload-artifact@v4
52+
- uses: actions/upload-artifact@v4.4.3
5353
with:
5454
name: wheels
5555
path: ./dist/*.whl
@@ -76,7 +76,7 @@ jobs:
7676
run: bash ./.ci/download_zlib.sh
7777
- name: Build wheels
7878
run: bash ./.ci/build_wheels.sh
79-
- uses: actions/upload-artifact@v4
79+
- uses: actions/upload-artifact@v4.4.3
8080
with:
8181
name: wheels
8282
path: ./dist/*.whl
@@ -105,7 +105,7 @@ jobs:
105105
uses: docker/setup-qemu-action@v3
106106
- name: Build wheels
107107
run: bash ./.ci/build_wheels.sh
108-
- uses: actions/upload-artifact@v4
108+
- uses: actions/upload-artifact@v4.4.3
109109
with:
110110
name: wheels
111111
path: ./dist/*.whl

0 commit comments

Comments
 (0)