Skip to content

Commit fb62a69

Browse files
A0-3952: Bump the all-github-actions group across 1 directory with 2 updates
Bumps the all-github-actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 5e99098 commit fb62a69

33 files changed

+105
-105
lines changed

.github/workflows/_build-aleph-e2e-client.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
RUSTC_WRAPPER: sccache
2929
steps:
3030
- name: Checkout aleph-node source code
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232
with:
3333
ref: ${{ inputs.ref }}
3434
fetch-depth: 0

.github/workflows/_build-aleph-node.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
artifact-name-image: ${{ steps.get-artifact-name-image.outputs.name }}
3535
steps:
3636
- name: Checkout aleph-node source code
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v5
3838
with:
3939
ref: ${{ inputs.ref }}
4040
fetch-depth: 0

.github/workflows/_build-and-push-cliain.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
CARGO_COMMAND: ${{ inputs.check-only && 'check' || 'build' }}
2424
steps:
2525
- name: Checkout source code
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727

2828
- name: Install Rust toolchain
2929
uses: Cardinal-Cryptography/github-actions/install-rust-toolchain@v7.3.0
@@ -56,14 +56,14 @@ jobs:
5656
CI_DEVNET_S3BUCKET_NAME: ${{ secrets.CI_DEVNET_S3BUCKET_NAME }}
5757
steps:
5858
- name: Checkout source code
59-
uses: actions/checkout@v4
59+
uses: actions/checkout@v5
6060

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

6565
- name: Download cliain from GH artifact
66-
uses: actions/download-artifact@v4
66+
uses: actions/download-artifact@v5
6767
with:
6868
name: cliain
6969
path: bin/cliain/target/release/cliain

.github/workflows/_build-chain-bootstrapper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
artifact-name-image: ${{ steps.get-artifact-name-image.outputs.name }}
3535
steps:
3636
- name: Checkout aleph-node source code
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v5
3838
with:
3939
ref: ${{ inputs.ref }}
4040
fetch-depth: 0

.github/workflows/_build-production-runtime.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
aleph-runtime-artifact-name: ${{ steps.get-artifact-name.outputs.name }}
2525
steps:
2626
- name: Checkout aleph-node source code
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828
with:
2929
ref: ${{ inputs.ref }}
3030
fetch-depth: 0

.github/workflows/_build-synthetic-node.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
artifact-name-image: ${{ steps.get-synthetic-network-artifact-image-name.outputs.name }}
2121
steps:
2222
- name: Checkout Source code
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424

2525
- name: Download node docker image
26-
uses: actions/download-artifact@v4
26+
uses: actions/download-artifact@v5
2727
with:
2828
name: ${{ inputs.artifact-aleph-node-image }}
2929

.github/workflows/_check-code-formatting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
RUSTC_WRAPPER: sccache
1414
steps:
1515
- name: Checkout Source code
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717

1818
- name: Install Nightly Rust Toolchain
1919
uses: Cardinal-Cryptography/github-actions/install-rust-toolchain@v7

.github/workflows/_check-excluded-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
RUSTC_WRAPPER: sccache
1414
steps:
1515
- name: Checkout source code
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717

1818
# TODO this is not ideal, as we need this step only to have rustup in the path
1919
# This step installs Rust from root rust-toolchain.toml, which is not used later

.github/workflows/_check-production-node-and-runtime.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
RUSTC_WRAPPER: sccache
1515
steps:
1616
- name: Checkout aleph-node source code
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: Call action get-ref-properties
2020
id: get-ref-properties

.github/workflows/_check-runtime-determimism.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ jobs:
1414
RUSTC_WRAPPER: sccache
1515
steps:
1616
- name: Checkout aleph-node source code
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

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

2424
- name: Download production runtime from artifacts
25-
uses: actions/download-artifact@v4
25+
uses: actions/download-artifact@v5
2626
with:
2727
name: aleph-production-runtime
2828

0 commit comments

Comments
 (0)