diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 030581c..ab1f890 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,7 @@ jobs: python -m build - name: Generate checksums run: python3 scripts/write_sha256s.py engine/dist/SHA256SUMS engine/dist/* - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: zero-engine-python path: engine/dist/* @@ -49,7 +49,7 @@ jobs: mkdir -p dist cp cli/target/release-small/zero dist/${{ matrix.artifact }} python3 scripts/write_sha256s.py dist/SHA256SUMS dist/${{ matrix.artifact }} - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: ${{ matrix.artifact }} path: dist/* @@ -69,7 +69,7 @@ jobs: mkdir -p dist docker save zero-public:${{ github.ref_name }} -o dist/zero-paper-image.tar python3 scripts/write_sha256s.py dist/SHA256SUMS dist/zero-paper-image.tar - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: zero-paper-image path: dist/*