diff --git a/.github/workflows/build_wheel.yml b/.github/workflows/build_wheel.yml index b04da9b..3afcfea 100644 --- a/.github/workflows/build_wheel.yml +++ b/.github/workflows/build_wheel.yml @@ -58,7 +58,7 @@ jobs: CIBW_BUILD_VERBOSITY: 1 CIBW_ARCHS: all CIBW_BUILD: cp${{ matrix.python }}-${{ matrix.platform_id }} - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: cibw-wheels-cp${{ matrix.python }}-${{ matrix.platform_id }}-${{ strategy.job-index }} path: ./wheelhouse/*.whl @@ -76,11 +76,11 @@ jobs: run: pipx run build --sdist - name: Build sdist for cmd run: cd cmd && pipx run build - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: cibw-sdist path: dist/*.tar.gz - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: cibw-cmd path: cmd/dist/* @@ -92,7 +92,7 @@ jobs: # IMPORTANT: this permission is mandatory for trusted publishing id-token: write steps: - - uses: actions/download-artifact@v5 + - uses: actions/download-artifact@v6 with: pattern: cibw-* path: dist