diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8bad511..8780d36 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,7 +59,7 @@ jobs: - name: Upload coverage report if: matrix.python-version == '3.12' - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: coverage-report path: htmlcov/ @@ -138,7 +138,7 @@ jobs: - name: Generate artifact attestation if: github.event_name == 'push' && github.ref == 'refs/heads/main' - uses: actions/attest-build-provenance@v3 + uses: actions/attest-build-provenance@v4 with: subject-name: ghcr.io/${{ github.repository }} subject-digest: ${{ steps.push.outputs.digest }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dc4cbcc..e77cbc4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,7 +28,7 @@ jobs: run: python -m build - name: Upload distributions - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: release-dists path: dist/ @@ -45,7 +45,7 @@ jobs: steps: - name: Download distributions - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: release-dists path: dist/ @@ -104,7 +104,7 @@ jobs: cache-to: type=gha,mode=min - name: Generate artifact attestation - uses: actions/attest-build-provenance@v3 + uses: actions/attest-build-provenance@v4 with: subject-name: ghcr.io/${{ github.repository }} subject-digest: ${{ steps.push.outputs.digest }}