Skip to content
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
6 changes: 3 additions & 3 deletions .github/workflows/_build-aleph-e2e-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
RUSTC_WRAPPER: sccache
steps:
- name: Checkout aleph-node source code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ inputs.ref }}
fetch-depth: 0
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
echo "name=aleph-e2e-client" >> $GITHUB_OUTPUT

- name: Upload binary to GH Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ steps.get-artifact-name-binary.outputs.name }}
path: e2e-tests/target/release/aleph-e2e-client
Expand All @@ -75,7 +75,7 @@ jobs:
echo "name=aleph-e2e-client-image" >> $GITHUB_OUTPUT

- name: Upload docker to GH Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ steps.get-artifact-name-image.outputs.name }}
path: e2e-tests/aleph-e2e-client.tar
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/_build-aleph-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
artifact-name-image: ${{ steps.get-artifact-name-image.outputs.name }}
steps:
- name: Checkout aleph-node source code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ inputs.ref }}
fetch-depth: 0
Expand All @@ -61,7 +61,7 @@ jobs:
echo "name=aleph-node-${{ env.ARTIFACT_NAME_SUFFIX }}" >> $GITHUB_OUTPUT

- name: Upload binary to GH Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ steps.get-artifact-name-binary.outputs.name }}
path: target/${{ env.CARGO_FOLDER }}/aleph-node
Expand All @@ -84,7 +84,7 @@ jobs:
echo "name=aleph-node-image-${{ env.ARTIFACT_NAME_SUFFIX }}" >> $GITHUB_OUTPUT

- name: Upload docker to GH Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ steps.get-artifact-name-image.outputs.name }}
path: aleph-node.tar
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/_build-and-push-cliain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
CARGO_COMMAND: ${{ inputs.check-only && 'check' || 'build' }}
steps:
- name: Checkout source code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install Rust toolchain
uses: Cardinal-Cryptography/github-actions/install-rust-toolchain@v7.3.0
Expand All @@ -36,7 +36,7 @@ jobs:

- name: Upload cliain binary to GH artifacts
if: ${{ inputs.check-only != true }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: cliain
path: bin/cliain/target/release/cliain
Expand All @@ -56,14 +56,14 @@ jobs:
CI_DEVNET_S3BUCKET_NAME: ${{ secrets.CI_DEVNET_S3BUCKET_NAME }}
steps:
- name: Checkout source code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Call action get-ref-properties
id: get-ref-properties
uses: Cardinal-Cryptography/github-actions/get-ref-properties@v7

- name: Download cliain from GH artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: cliain
path: bin/cliain/target/release/cliain
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:

- name: Configure AWS credentials for S3 AWS
if: ${{ inputs.check-only != true }}
uses: aws-actions/configure-aws-credentials@v4
uses: aws-actions/configure-aws-credentials@v5
env:
AWS_ACCESS_KEY_ID: ""
AWS_SECRET_ACCESS_KEY: ""
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/_build-chain-bootstrapper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
artifact-name-image: ${{ steps.get-artifact-name-image.outputs.name }}
steps:
- name: Checkout aleph-node source code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ inputs.ref }}
fetch-depth: 0
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
echo "name=chain-bootstrapper-${{ env.ARTIFACT_NAME_SUFFIX }}" >> $GITHUB_OUTPUT

- name: Upload binary to GH Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ steps.get-artifact-name-binary.outputs.name }}
path: target/${{ env.CARGO_FOLDER }}/chain-bootstrapper
Expand All @@ -89,7 +89,7 @@ jobs:
echo "name=chain-bootstrapper-image-${{ env.ARTIFACT_NAME_SUFFIX }}" >> $GITHUB_OUTPUT

- name: Upload docker image to GH Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ steps.get-artifact-name-image.outputs.name }}
path: chain-bootstrapper.tar
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/_build-production-runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
aleph-runtime-artifact-name: ${{ steps.get-artifact-name.outputs.name }}
steps:
- name: Checkout aleph-node source code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ inputs.ref }}
fetch-depth: 0
Expand All @@ -47,7 +47,7 @@ jobs:
echo "name=aleph-production-runtime" >> $GITHUB_OUTPUT

- name: Upload release runtime to GH artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ steps.get-artifact-name.outputs.name }}
path: target/production/wbuild/aleph-runtime/aleph_runtime.compact.compressed.wasm
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/_build-synthetic-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
artifact-name-image: ${{ steps.get-synthetic-network-artifact-image-name.outputs.name }}
steps:
- name: Checkout Source code
uses: actions/checkout@v4
uses: actions/checkout@v5

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

Expand All @@ -44,7 +44,7 @@ jobs:
echo "name=aleph-release-synthetic-docker" >> $GITHUB_OUTPUT

- name: Upload synthetic aleph-node image
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ steps.get-synthetic-network-artifact-image-name.outputs.name }}
path: aleph-node.tar
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_check-code-formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
RUSTC_WRAPPER: sccache
steps:
- name: Checkout Source code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install Nightly Rust Toolchain
uses: Cardinal-Cryptography/github-actions/install-rust-toolchain@v7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_check-excluded-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
RUSTC_WRAPPER: sccache
steps:
- name: Checkout source code
uses: actions/checkout@v4
uses: actions/checkout@v5

# TODO this is not ideal, as we need this step only to have rustup in the path
# This step installs Rust from root rust-toolchain.toml, which is not used later
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_check-production-node-and-runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
RUSTC_WRAPPER: sccache
steps:
- name: Checkout aleph-node source code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Call action get-ref-properties
id: get-ref-properties
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/_check-runtime-determimism.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
RUSTC_WRAPPER: sccache
steps:
- name: Checkout aleph-node source code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install Rust toolchain
uses: Cardinal-Cryptography/github-actions/install-rust-toolchain@v7
with:
targets: wasm32-unknown-unknown

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

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/_check-runtime-metadata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
RUSTC_WRAPPER: sccache
steps:
- name: Checkout aleph-node source code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ inputs.ref }}
fetch-depth: 0
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
echo "path=${subxt_path}" >> $GITHUB_OUTPUT

- name: Upload subxt binary to GH artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: subxt-binary
path: ${{ steps.get-subxt-path.outputs.path }}
Expand All @@ -67,18 +67,18 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout aleph-node source code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ inputs.ref }}
fetch-depth: 0

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

- name: Download node docker image
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
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@v6
with:
name: ${{ inputs.artifact-chain-bootstrapper-image }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/_push-image-to-ecr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout aleph-node sources
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Call action get-ref-properties
id: get-ref-properties
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@v6
with:
name: ${{ inputs.binary-artifact-name }}
path: target/release/
Expand Down
Loading
Loading