Skip to content
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
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 @@ -63,7 +63,7 @@ jobs:
uses: Cardinal-Cryptography/github-actions/get-ref-properties@v7

- name: Download cliain from GH artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: cliain
path: bin/cliain/target/release/cliain
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 @@ -23,7 +23,7 @@ jobs:
uses: actions/checkout@v4

- name: Download node docker image
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: ${{ inputs.artifact-aleph-node-image }}

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 @@ -22,7 +22,7 @@ jobs:
targets: wasm32-unknown-unknown

- name: Download production runtime from artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: aleph-production-runtime

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/_check-runtime-metadata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@ jobs:
fetch-depth: 0

- name: Download node docker image
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: subxt-binary

- name: Download node docker image
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: ${{ inputs.artifact-aleph-node-image }}

Expand All @@ -87,7 +87,7 @@ jobs:
run: docker load -i aleph-node.tar

- name: Download chain-bootstrapper image
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: ${{ inputs.artifact-chain-bootstrapper-image }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_push-image-to-ecr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
uses: Cardinal-Cryptography/github-actions/get-ref-properties@v7

- name: Download ${{ inputs.binary-artifact-name }} from artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: ${{ inputs.binary-artifact-name }}
path: target/release/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly-e2e-logic-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,13 @@ jobs:
uses: actions/checkout@v4

- name: Download test node from GH artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: ${{ needs.build-test-aleph-node.outputs.artifact-name-binary }}
path: target/release/

- name: Download chain-bootstrapper from GH artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: ${{ needs.build-chain-bootstrapper-test.outputs.artifact-name-binary }}
path: target/release/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-fe-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:
runs-on: [self-hosted, Linux, X64, small]
steps:
- name: Download artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: ${{ needs.build-aleph-e2e-client-image.outputs.artifact-name-image }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/nightly-normal-session-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -295,13 +295,13 @@ jobs:
uses: actions/checkout@v4

- name: Download node binary from GH artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: ${{ needs.build-production-aleph-node.outputs.artifact-name-binary }}
path: target/release/

- name: Download chain-bootstrapper from GH artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: ${{ needs.build-chain-bootstrapper-production.outputs.artifact-name-binary }}
path: target/release/
Expand All @@ -325,13 +325,13 @@ jobs:
uses: actions/checkout@v4

- name: Download node binary from GH artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: ${{ needs.build-production-aleph-node.outputs.artifact-name-binary }}
path: target/release/

- name: Download chain-bootstrapper from GH artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: ${{ needs.build-chain-bootstrapper-production.outputs.artifact-name-binary }}
path: target/release/
Expand Down