Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update github artifact actions to v4 (major) #828

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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/
Expand Down Expand Up @@ -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/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/snapshot-air-interpreter-wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion .github/workflows/snapshot-avm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/snapshot-cargo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading