diff --git a/.github/workflows/_build-aleph-e2e-client.yml b/.github/workflows/_build-aleph-e2e-client.yml index eaf1ca2cea..0234b67ed3 100644 --- a/.github/workflows/_build-aleph-e2e-client.yml +++ b/.github/workflows/_build-aleph-e2e-client.yml @@ -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 diff --git a/.github/workflows/_build-aleph-node.yml b/.github/workflows/_build-aleph-node.yml index a51b008f27..3ec0ed77f3 100644 --- a/.github/workflows/_build-aleph-node.yml +++ b/.github/workflows/_build-aleph-node.yml @@ -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 diff --git a/.github/workflows/_build-and-push-cliain.yml b/.github/workflows/_build-and-push-cliain.yml index 361e9e404a..96a8cf71ff 100644 --- a/.github/workflows/_build-and-push-cliain.yml +++ b/.github/workflows/_build-and-push-cliain.yml @@ -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 @@ -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@v5 with: name: cliain path: bin/cliain/target/release/cliain diff --git a/.github/workflows/_build-chain-bootstrapper.yml b/.github/workflows/_build-chain-bootstrapper.yml index b1121c2472..9fb8635ed3 100644 --- a/.github/workflows/_build-chain-bootstrapper.yml +++ b/.github/workflows/_build-chain-bootstrapper.yml @@ -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 diff --git a/.github/workflows/_build-production-runtime.yml b/.github/workflows/_build-production-runtime.yml index 7e11eb4349..ed7b71d3cf 100644 --- a/.github/workflows/_build-production-runtime.yml +++ b/.github/workflows/_build-production-runtime.yml @@ -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 diff --git a/.github/workflows/_build-synthetic-node.yml b/.github/workflows/_build-synthetic-node.yml index c518e1183b..4a977dd49d 100644 --- a/.github/workflows/_build-synthetic-node.yml +++ b/.github/workflows/_build-synthetic-node.yml @@ -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@v5 with: name: ${{ inputs.artifact-aleph-node-image }} diff --git a/.github/workflows/_check-code-formatting.yml b/.github/workflows/_check-code-formatting.yml index c71d6a1991..7a7bee6574 100644 --- a/.github/workflows/_check-code-formatting.yml +++ b/.github/workflows/_check-code-formatting.yml @@ -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 diff --git a/.github/workflows/_check-excluded-packages.yml b/.github/workflows/_check-excluded-packages.yml index d8124befd1..0c7cc14e0a 100644 --- a/.github/workflows/_check-excluded-packages.yml +++ b/.github/workflows/_check-excluded-packages.yml @@ -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 diff --git a/.github/workflows/_check-production-node-and-runtime.yml b/.github/workflows/_check-production-node-and-runtime.yml index f7edadef8b..460d221220 100644 --- a/.github/workflows/_check-production-node-and-runtime.yml +++ b/.github/workflows/_check-production-node-and-runtime.yml @@ -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 diff --git a/.github/workflows/_check-runtime-determimism.yml b/.github/workflows/_check-runtime-determimism.yml index 478c3852c8..a5bffd7530 100644 --- a/.github/workflows/_check-runtime-determimism.yml +++ b/.github/workflows/_check-runtime-determimism.yml @@ -14,7 +14,7 @@ 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 @@ -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 diff --git a/.github/workflows/_check-runtime-metadata.yml b/.github/workflows/_check-runtime-metadata.yml index 9a6dab154e..68821341f3 100644 --- a/.github/workflows/_check-runtime-metadata.yml +++ b/.github/workflows/_check-runtime-metadata.yml @@ -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 @@ -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@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 }} @@ -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 }} diff --git a/.github/workflows/_push-image-to-ecr.yml b/.github/workflows/_push-image-to-ecr.yml index 2ca47da151..ceab866c1b 100644 --- a/.github/workflows/_push-image-to-ecr.yml +++ b/.github/workflows/_push-image-to-ecr.yml @@ -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@v5 with: name: ${{ inputs.binary-artifact-name }} path: target/release/ diff --git a/.github/workflows/_run-e2e-tests.yml b/.github/workflows/_run-e2e-tests.yml index c6fca4ff04..e983d393c8 100644 --- a/.github/workflows/_run-e2e-tests.yml +++ b/.github/workflows/_run-e2e-tests.yml @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -39,7 +39,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -55,7 +55,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -71,7 +71,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -87,7 +87,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -103,7 +103,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -119,7 +119,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -135,7 +135,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -151,7 +151,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -167,7 +167,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -183,7 +183,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -199,7 +199,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -215,7 +215,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -231,7 +231,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -247,7 +247,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -263,7 +263,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -279,7 +279,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -295,7 +295,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -314,7 +314,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -330,7 +330,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -346,7 +346,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -362,7 +362,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -378,7 +378,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -394,7 +394,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -414,7 +414,7 @@ jobs: runs-on: ubuntu-24.04 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 @@ -437,7 +437,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -453,7 +453,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test env: @@ -473,7 +473,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test env: @@ -493,7 +493,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test env: @@ -513,7 +513,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test env: @@ -532,7 +532,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test env: @@ -551,7 +551,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -567,7 +567,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -583,7 +583,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test env: @@ -602,7 +602,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test env: @@ -621,7 +621,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -637,7 +637,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -653,7 +653,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -669,7 +669,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -685,7 +685,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -701,7 +701,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -718,7 +718,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test diff --git a/.github/workflows/_unit-tests-and-static-checks.yml b/.github/workflows/_unit-tests-and-static-checks.yml index 02cd0f03b7..73f0622313 100644 --- a/.github/workflows/_unit-tests-and-static-checks.yml +++ b/.github/workflows/_unit-tests-and-static-checks.yml @@ -13,7 +13,7 @@ jobs: RUSTC_WRAPPER: sccache 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 @@ -31,7 +31,7 @@ jobs: RUSTC_WRAPPER: sccache 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 diff --git a/.github/workflows/_update-node-image-infra.yml b/.github/workflows/_update-node-image-infra.yml index 3ef4afdaa0..686ad82385 100644 --- a/.github/workflows/_update-node-image-infra.yml +++ b/.github/workflows/_update-node-image-infra.yml @@ -53,7 +53,7 @@ jobs: echo "repo-owner=$GITHUB_REPOSITORY_OWNER" >> $GITHUB_OUTPUT - name: GIT | Checkout argocd apps repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ inputs.env }} # yamllint disable-line rule:line-length diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index 167b8bda33..205351d511 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -15,7 +15,7 @@ jobs: runs-on: [self-hosted, Linux, X64, large] steps: - name: GIT | Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install Rust toolchain uses: Cardinal-Cryptography/github-actions/install-rust-toolchain@v7 diff --git a/.github/workflows/deploy-to-mainnet.yml b/.github/workflows/deploy-to-mainnet.yml index eaba403a42..53e3d26ea1 100644 --- a/.github/workflows/deploy-to-mainnet.yml +++ b/.github/workflows/deploy-to-mainnet.yml @@ -30,7 +30,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout aleph-node sources - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: '0' ref: ${{ inputs.tag }} diff --git a/.github/workflows/nightly-check-node-features-build.yml b/.github/workflows/nightly-check-node-features-build.yml index 38330778e9..14a2dd9999 100644 --- a/.github/workflows/nightly-check-node-features-build.yml +++ b/.github/workflows/nightly-check-node-features-build.yml @@ -17,7 +17,7 @@ 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 diff --git a/.github/workflows/nightly-e2e-logic-tests.yml b/.github/workflows/nightly-e2e-logic-tests.yml index a6464f9c58..29c2be4b03 100644 --- a/.github/workflows/nightly-e2e-logic-tests.yml +++ b/.github/workflows/nightly-e2e-logic-tests.yml @@ -62,16 +62,16 @@ jobs: runs-on: [self-hosted, Linux, X64, medium] steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - 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/ diff --git a/.github/workflows/nightly-fe-e2e-tests.yml b/.github/workflows/nightly-fe-e2e-tests.yml index f46e593b2e..4bbfff3e1e 100644 --- a/.github/workflows/nightly-fe-e2e-tests.yml +++ b/.github/workflows/nightly-fe-e2e-tests.yml @@ -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 }} diff --git a/.github/workflows/nightly-integration-tests.yml b/.github/workflows/nightly-integration-tests.yml index e43bf1ca7d..c2b258f5d2 100644 --- a/.github/workflows/nightly-integration-tests.yml +++ b/.github/workflows/nightly-integration-tests.yml @@ -24,7 +24,7 @@ jobs: RUSTC_WRAPPER: sccache 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 diff --git a/.github/workflows/nightly-normal-session-e2e-tests.yml b/.github/workflows/nightly-normal-session-e2e-tests.yml index 56be09a926..38eaa26d2a 100644 --- a/.github/workflows/nightly-normal-session-e2e-tests.yml +++ b/.github/workflows/nightly-normal-session-e2e-tests.yml @@ -54,7 +54,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -80,7 +80,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -110,7 +110,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -141,7 +141,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -171,7 +171,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -202,7 +202,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -233,7 +233,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -263,7 +263,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -292,16 +292,16 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - 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/ @@ -322,16 +322,16 @@ jobs: runs-on: [self-hosted, Linux, X64, medium] steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - 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/ @@ -353,7 +353,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test diff --git a/.github/workflows/on-main-or-release-branch-commit.yml b/.github/workflows/on-main-or-release-branch-commit.yml index cccfe0bfd9..3936af99be 100644 --- a/.github/workflows/on-main-or-release-branch-commit.yml +++ b/.github/workflows/on-main-or-release-branch-commit.yml @@ -99,7 +99,7 @@ jobs: - build-production-chain-bootstrapper steps: - name: Checkout aleph-node source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Store production node and runtime uses: ./.github/actions/store-artifacts-in-s3 @@ -134,7 +134,7 @@ jobs: needs: [push-production-node-image-to-ecr] steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Send Slack message uses: Cardinal-Cryptography/github-actions/slack-notification@v7 diff --git a/.github/workflows/on-pull-request-commit.yml b/.github/workflows/on-pull-request-commit.yml index 49db5592b1..79546f8736 100644 --- a/.github/workflows/on-pull-request-commit.yml +++ b/.github/workflows/on-pull-request-commit.yml @@ -90,7 +90,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test @@ -111,7 +111,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run e2e test uses: ./.github/actions/run-e2e-test diff --git a/.github/workflows/on-push-release-tag.yml b/.github/workflows/on-push-release-tag.yml index 7ceff6158f..7b8f4d1a66 100644 --- a/.github/workflows/on-push-release-tag.yml +++ b/.github/workflows/on-push-release-tag.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Call action get-ref-properties id: get-ref-properties diff --git a/.github/workflows/on-release.yml b/.github/workflows/on-release.yml index e2b97e2aa3..2dcfcff7ac 100644 --- a/.github/workflows/on-release.yml +++ b/.github/workflows/on-release.yml @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Call action get-ref-properties id: get-ref-properties diff --git a/.github/workflows/push-foundation-repo.yml b/.github/workflows/push-foundation-repo.yml index 89c24201b1..559d568d1a 100644 --- a/.github/workflows/push-foundation-repo.yml +++ b/.github/workflows/push-foundation-repo.yml @@ -24,7 +24,7 @@ jobs: github.ref_name == 'main' steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 token: ${{ secrets.SYNCAZF }} @@ -43,7 +43,7 @@ jobs: startsWith(github.ref_name, 'release-') steps: - name: GIT | Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 token: ${{ secrets.SYNCAZF }} @@ -67,7 +67,7 @@ jobs: if: github.repository == 'Cardinal-Cryptography/aleph-node' && startsWith(github.ref, 'refs/tags/') steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Call action get-ref-properties id: get-ref-properties @@ -75,7 +75,7 @@ jobs: uses: Cardinal-Cryptography/github-actions/get-ref-properties@v7 - name: Checkout Aleph-Zero-Foundation repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: aleph-zero-foundation/aleph-node token: ${{ secrets.SYNCAZF }} diff --git a/.github/workflows/sync-from-snapshot-mainnet-paritydb-pruned.yml b/.github/workflows/sync-from-snapshot-mainnet-paritydb-pruned.yml index 415ef8984a..2d34d03dbb 100644 --- a/.github/workflows/sync-from-snapshot-mainnet-paritydb-pruned.yml +++ b/.github/workflows/sync-from-snapshot-mainnet-paritydb-pruned.yml @@ -54,7 +54,7 @@ jobs: timeout-minutes: 120 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Test sync uses: ./.github/actions/sync-from-snapshot diff --git a/.github/workflows/sync-from-snapshot-mainnet-rocksdb-pruned.yml b/.github/workflows/sync-from-snapshot-mainnet-rocksdb-pruned.yml index 86a095ff91..4d1053bee1 100644 --- a/.github/workflows/sync-from-snapshot-mainnet-rocksdb-pruned.yml +++ b/.github/workflows/sync-from-snapshot-mainnet-rocksdb-pruned.yml @@ -54,7 +54,7 @@ jobs: timeout-minutes: 120 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Test sync uses: ./.github/actions/sync-from-snapshot diff --git a/.github/workflows/sync-from-snapshot-mainnet.yml b/.github/workflows/sync-from-snapshot-mainnet.yml index 3801b46ccb..0871fec8e6 100644 --- a/.github/workflows/sync-from-snapshot-mainnet.yml +++ b/.github/workflows/sync-from-snapshot-mainnet.yml @@ -54,7 +54,7 @@ jobs: timeout-minutes: 600 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Test sync uses: ./.github/actions/sync-from-snapshot diff --git a/.github/workflows/sync-from-snapshot-testnet-paritydb-pruned.yml b/.github/workflows/sync-from-snapshot-testnet-paritydb-pruned.yml index f697a86dd4..078a550b8c 100644 --- a/.github/workflows/sync-from-snapshot-testnet-paritydb-pruned.yml +++ b/.github/workflows/sync-from-snapshot-testnet-paritydb-pruned.yml @@ -36,7 +36,7 @@ jobs: timeout-minutes: 120 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Test sync uses: ./.github/actions/sync-from-snapshot diff --git a/.github/workflows/sync-from-snapshot-testnet-rocksdb-pruned.yml b/.github/workflows/sync-from-snapshot-testnet-rocksdb-pruned.yml index 0ede3693eb..c3c680522c 100644 --- a/.github/workflows/sync-from-snapshot-testnet-rocksdb-pruned.yml +++ b/.github/workflows/sync-from-snapshot-testnet-rocksdb-pruned.yml @@ -36,7 +36,7 @@ jobs: timeout-minutes: 120 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Test sync uses: ./.github/actions/sync-from-snapshot diff --git a/.github/workflows/sync-from-snapshot-testnet.yml b/.github/workflows/sync-from-snapshot-testnet.yml index 00b96f9db5..261f6c58d0 100644 --- a/.github/workflows/sync-from-snapshot-testnet.yml +++ b/.github/workflows/sync-from-snapshot-testnet.yml @@ -36,7 +36,7 @@ jobs: timeout-minutes: 600 steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Test sync uses: ./.github/actions/sync-from-snapshot