Skip to content

Commit 1853014

Browse files
Merge pull request #31 from Scalr/bump-gh-actions
Bump GH Actions
2 parents 97cff55 + 5aa6928 commit 1853014

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/default.yml

+7-6
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
pytest --doctest-modules -o junit_family=xunit2 --junitxml=junit/test-results-${{ matrix.python-version }}.xml
4646
4747
- name: Upload pytest test results
48-
uses: actions/upload-artifact@v3
48+
uses: actions/upload-artifact@v4
4949
with:
5050
name: pytest-results-${{ matrix.python-version }}
5151
path: junit/test-results-${{ matrix.python-version }}.xml
@@ -96,9 +96,9 @@ jobs:
9696
CIBW_SKIP: "pp* *-musllinux*"
9797
CIBW_ARCHS_MACOS: ${{ matrix.buildplat[2] }}
9898

99-
- uses: actions/upload-artifact@v3
99+
- uses: actions/upload-artifact@v4
100100
with:
101-
name: wheels
101+
name: wheels-${{ matrix.python }}-${{ matrix.buildplat[1] }}-${{ matrix.buildplat[2] }}
102102
path: ./wheelhouse/*.whl
103103

104104
upload:
@@ -108,9 +108,10 @@ jobs:
108108
runs-on: ubuntu-latest
109109

110110
steps:
111-
- uses: actions/download-artifact@v2
111+
- uses: actions/download-artifact@v4
112112
with:
113-
name: wheels
113+
pattern: wheels-*
114+
merge-multiple: true
114115
path: dist
115116

116117
- name: Display structure of downloaded files
@@ -119,6 +120,6 @@ jobs:
119120
- uses: pypa/gh-action-pypi-publish@release/v1
120121
if: startsWith(github.ref, 'refs/tags/')
121122
with:
122-
skip_existing: true
123+
skip-existing: true
123124
user: ${{ secrets.PYPI_USERNAME }}
124125
password: ${{ secrets.PYPI_PASSWORD }}

0 commit comments

Comments
 (0)