diff --git a/.github/workflows/cibuildwheel.yml b/.github/workflows/cibuildwheel.yml index d0efe8d8d..2a2ebf717 100644 --- a/.github/workflows/cibuildwheel.yml +++ b/.github/workflows/cibuildwheel.yml @@ -38,7 +38,7 @@ jobs: pip install build && python -m build --sdist . --outdir dist - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: pypi-artifacts path: ${{ github.workspace }}/dist/*.tar.gz @@ -93,7 +93,7 @@ jobs: env: CIBW_ARCHS: ${{ matrix.arch }} - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: pypi-artifacts-${{ matrix.os }}-${{ matrix.arch }} path: ${{ github.workspace }}/wheelhouse/*.whl @@ -130,7 +130,7 @@ jobs: env: CIBW_ARCHS: ${{ matrix.arch }} - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: pypi-artifacts-${{ matrix.os }}-${{ matrix.arch }} path: ${{ github.workspace }}/wheelhouse/*.whl @@ -141,7 +141,7 @@ jobs: name: "Show artifacts" runs-on: ubuntu-22.04 steps: - - uses: actions/download-artifact@v5 + - uses: actions/download-artifact@v6 with: pattern: pypi-artifacts* path: ${{ github.workspace }}/dist @@ -159,7 +159,7 @@ jobs: # upload to PyPI for every tag starting with 'v' if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') steps: - - uses: actions/download-artifact@v5 + - uses: actions/download-artifact@v6 with: pattern: pypi-artifacts* path: ${{ github.workspace }}/dist