diff --git a/.github/workflows/cibw-cc.yaml b/.github/workflows/cibw-cc.yaml index f8b1f51..0336ba5 100644 --- a/.github/workflows/cibw-cc.yaml +++ b/.github/workflows/cibw-cc.yaml @@ -59,7 +59,7 @@ jobs: CIBW_PLATFORM: ${{ matrix.platform }} CIBW_ARCHS: ${{ matrix.archs || 'auto' }} - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: wheels-${{ matrix.platform }}-${{ matrix.os }} path: dist/*.whl diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 703196f..2cd6bd4 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -32,7 +32,7 @@ jobs: - name: Check metadata run: pipx run twine check dist/* - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: cibw-sdist path: dist/*.tar.gz @@ -59,7 +59,7 @@ jobs: run: git diff --exit-code shell: bash - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: cibw-wheels-${{ matrix.os }} path: wheelhouse/*.whl @@ -80,14 +80,14 @@ jobs: with: python-version: "3.x" - - uses: actions/download-artifact@v7 + - uses: actions/download-artifact@v8 with: pattern: cibw-* merge-multiple: true path: dist - name: Generate artifact attestation for sdist and wheels - uses: actions/attest-build-provenance@v3 + uses: actions/attest-build-provenance@v4 with: subject-path: "dist/*"