diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 7a6509a93..dd3faf26c 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -52,7 +52,7 @@ jobs: run: aquavm_performance_metering run - name: Upload benchmark results to artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ./benches/PERFORMANCE.txt path: lcov.info diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c2cf3162d..df926b153 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -127,7 +127,7 @@ jobs: working-directory: air-interpreter - name: Upload air-interpreter-wasm artifact to GitHub checks - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: air-interpreter-wasm path: target/wasm32-wasi/release/air_interpreter_server.wasm @@ -169,7 +169,7 @@ jobs: uses: actions/checkout@v4 - name: Download air-interpreter-wasm artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: air-interpreter-wasm path: avm/client/dist/ @@ -227,7 +227,7 @@ jobs: uses: dsherret/rust-toolchain-file@v1 - name: Download air-interpreter-wasm artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: air-interpreter-wasm path: crates/interpreter-wasm/ diff --git a/.github/workflows/snapshot-air-interpreter-wasm.yml b/.github/workflows/snapshot-air-interpreter-wasm.yml index 95972219a..7ac337011 100644 --- a/.github/workflows/snapshot-air-interpreter-wasm.yml +++ b/.github/workflows/snapshot-air-interpreter-wasm.yml @@ -58,7 +58,7 @@ jobs: working-directory: air-interpreter - name: Upload air-interpreter-wasm binary - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: air-interpreter-wasm path: target/wasm32-wasi/release/air_interpreter_server.wasm diff --git a/.github/workflows/snapshot-avm.yml b/.github/workflows/snapshot-avm.yml index d19603da9..6d05583c6 100644 --- a/.github/workflows/snapshot-avm.yml +++ b/.github/workflows/snapshot-avm.yml @@ -36,7 +36,7 @@ jobs: ref: ${{ inputs.ref }} - name: Download air-interpreter-wasm binary - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: air-interpreter-wasm path: avm/client/dist/ diff --git a/.github/workflows/snapshot-cargo.yml b/.github/workflows/snapshot-cargo.yml index 7441934cf..2102e15ad 100644 --- a/.github/workflows/snapshot-cargo.yml +++ b/.github/workflows/snapshot-cargo.yml @@ -76,7 +76,7 @@ jobs: dependencies: ${{ inputs.cargo-dependencies }} - name: Download air-interpreter-wasm binary - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: air-interpreter-wasm diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fa62e7916..f66471205 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -71,7 +71,7 @@ jobs: - name: Archive code coverage results if: inputs.cargo-dependencies == 'null' && !github.event.pull_request.head.repo.fork - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: code-coverage-report.zip path: lcov.info