diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 1e509d7..21f6caa 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -73,7 +73,7 @@ jobs: - name: Build wheels uses: pypa/cibuildwheel@v3.3.0 - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: path: ./wheelhouse/*.whl name: pypi-wheels-${{ matrix.os }} @@ -90,7 +90,7 @@ jobs: - name: Build sdist run: pipx run build --sdist - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: pypi-sdist path: dist/*.tar.gz @@ -108,7 +108,7 @@ jobs: # alternatively, to publish when a GitHub Release is created, use the following rule: # if: github.event_name == 'release' && github.event.action == 'published' steps: - - uses: actions/download-artifact@v7 + - uses: actions/download-artifact@v8 with: pattern: pypi-* path: dist