Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/build-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
CIBW_ENABLE: "${{ startsWith(github.ref, 'refs/tags/v') && '' || 'cpython-prerelease'}}"
CIBW_PLATFORM: "${{ matrix.platform }}"

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: "${{ (matrix.platform != 'pyodide') && 'pypi' || 'cibw' }}-wheels ${{ matrix.build || matrix.platform }} ${{ matrix.archs }}"
path: ./wheelhouse/*.whl
Expand Down Expand Up @@ -177,7 +177,7 @@ jobs:
python -m pip install --group test
pytest

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: pypi-sdist
path: dist/*.tar.gz
Expand All @@ -189,7 +189,7 @@ jobs:
contents: read
runs-on: ubuntu-24.04
steps:
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
# unpacks all PyPI artifacts into dist/
pattern: pypi-*
Expand All @@ -201,7 +201,7 @@ jobs:
EXPECTED_WHEEL_COUNT=${{ startsWith(github.ref, 'refs/tags/v') && '214' || '214' }}
test ${WHEEL_COUNT} -eq ${EXPECTED_WHEEL_COUNT}
pipx run twine check --strict dist/*
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
# unpacks all non PyPI artifacts into nodist/
pattern: cibw-*
Expand All @@ -225,7 +225,7 @@ jobs:
permissions:
id-token: write # trusted publishing + attestations
steps:
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
# unpacks all PyPI artifacts into dist/
pattern: pypi-*
Expand All @@ -248,7 +248,7 @@ jobs:
permissions:
id-token: write # trusted publishing + attestations
steps:
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
# unpacks all PyPI artifacts into dist/
pattern: pypi-*
Expand Down
Loading