Skip to content

Bump actions/upload-artifact from 2 to 4 #28

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

Open
wants to merge 1 commit into
base: main
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/_build-and-push-cliain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:

- name: Upload cliain binary to GH artifacts
if: ${{ inputs.check-only != true }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: cliain
path: bin/cliain/target/release/cliain
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/_build-production-node-and-runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
|| echo "Liminal symbols are not present"

- name: Upload release binary to GH artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: aleph-production-node
path: target/production/aleph-node
Expand All @@ -44,7 +44,7 @@ jobs:

# required by _check-runtime-determinism.yml workflow
- name: Upload release runtime to GH artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: aleph-production-runtime
path: target/production/wbuild/aleph-runtime/aleph_runtime.compact.compressed.wasm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_build-synthetic-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
docker save -o aleph-node.tar aleph-node:syntheticnet

- name: Upload synthetic aleph-node image
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: aleph-release-synthetic-docker
path: aleph-node.tar
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/_build-test-node-and-runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

# this is required for some workflows, yet ideally it should not be required
- name: Upload test binary to GH Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: aleph-test-node
path: target/release/aleph-node
Expand All @@ -62,7 +62,7 @@ jobs:

# this is solely required by action/run-e2e-test.yml, also it should not be required
- name: Upload test docker image
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: aleph-test-docker
path: aleph-node.tar
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_liminal-build-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

- name: Upload liminal aleph-node binary to GH Artifacts
if: ${{ inputs.check-only != true }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: aleph-node-liminal
path: target/release/aleph-node
Expand Down