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

Bump actions/download-artifact from 2 to 3 #22

Closed
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/checkout@v3

- name: Download test artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: aleph-test-node
path: target/release/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_check-runtime-determimism.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: rustup target add wasm32-unknown-unknown

- name: Download production runtime from artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: aleph-release-runtime

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-feature-envs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
uses: ./.github/actions/get-branch

- name: Download artifact with built aleph-node binary from PR
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: aleph-release-node
path: target/release/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nightly-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: actions/checkout@v3

- name: Download test artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: aleph-test-node
path: target/release
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
uses: actions/checkout@v3

- name: Download artifact with docker image for aleph-node
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: aleph-test-docker

Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
run: rustup target add wasm32-unknown-unknown

- name: Download artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: aleph-release-runtime

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-main-or-release-branch-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
uses: ./.github/actions/get-ref-properties

- name: Download node production binary from artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: aleph-release-node
path: target/release/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/on-pull-request-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ jobs:
uses: actions/checkout@v3

- name: Download all artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
path: local-tests/

Expand Down Expand Up @@ -504,7 +504,7 @@ jobs:
uses: actions/checkout@v3

- name: Download all artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
path: local-tests/

Expand Down