diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 6781c24..03954bd 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -36,7 +36,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/') run: git diff --exit-code shell: bash - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: artifact-${{ matrix.os }}-${{ matrix.python }} path: ./wheelhouse/*.whl @@ -56,7 +56,7 @@ jobs: fi - name: Build sdist run: pipx run build --sdist - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: artifact-source path: dist/*.tar.gz @@ -67,7 +67,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Merge artifacts - uses: actions/upload-artifact/merge@v5 + uses: actions/upload-artifact/merge@v6 with: name: all-files pattern: artifact-*