Skip to content

Commit 806431d

Browse files
A0-3952: Bump the all-github-actions group across 1 directory with 4 updates
Bumps the all-github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials). 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/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 4 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v6) Updates `aws-actions/configure-aws-credentials` from 4 to 5 - [Release notes](https://github.com/aws-actions/configure-aws-credentials/releases) - [Changelog](https://github.com/aws-actions/configure-aws-credentials/blob/main/CHANGELOG.md) - [Commits](aws-actions/configure-aws-credentials@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/upload-artifact 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: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions - dependency-name: aws-actions/configure-aws-credentials dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 7f58abe commit 806431d

33 files changed

+117
-117
lines changed

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

Lines changed: 3 additions & 3 deletions
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
@@ -56,7 +56,7 @@ jobs:
5656
echo "name=aleph-e2e-client" >> $GITHUB_OUTPUT
5757
5858
- name: Upload binary to GH Artifacts
59-
uses: actions/upload-artifact@v4
59+
uses: actions/upload-artifact@v5
6060
with:
6161
name: ${{ steps.get-artifact-name-binary.outputs.name }}
6262
path: e2e-tests/target/release/aleph-e2e-client
@@ -75,7 +75,7 @@ jobs:
7575
echo "name=aleph-e2e-client-image" >> $GITHUB_OUTPUT
7676
7777
- name: Upload docker to GH Artifacts
78-
uses: actions/upload-artifact@v4
78+
uses: actions/upload-artifact@v5
7979
with:
8080
name: ${{ steps.get-artifact-name-image.outputs.name }}
8181
path: e2e-tests/aleph-e2e-client.tar

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

Lines changed: 3 additions & 3 deletions
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
@@ -61,7 +61,7 @@ jobs:
6161
echo "name=aleph-node-${{ env.ARTIFACT_NAME_SUFFIX }}" >> $GITHUB_OUTPUT
6262
6363
- name: Upload binary to GH Artifacts
64-
uses: actions/upload-artifact@v4
64+
uses: actions/upload-artifact@v5
6565
with:
6666
name: ${{ steps.get-artifact-name-binary.outputs.name }}
6767
path: target/${{ env.CARGO_FOLDER }}/aleph-node
@@ -84,7 +84,7 @@ jobs:
8484
echo "name=aleph-node-image-${{ env.ARTIFACT_NAME_SUFFIX }}" >> $GITHUB_OUTPUT
8585
8686
- name: Upload docker to GH Artifacts
87-
uses: actions/upload-artifact@v4
87+
uses: actions/upload-artifact@v5
8888
with:
8989
name: ${{ steps.get-artifact-name-image.outputs.name }}
9090
path: aleph-node.tar

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

Lines changed: 5 additions & 5 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/[email protected]
@@ -36,7 +36,7 @@ jobs:
3636
3737
- name: Upload cliain binary to GH artifacts
3838
if: ${{ inputs.check-only != true }}
39-
uses: actions/upload-artifact@v4
39+
uses: actions/upload-artifact@v5
4040
with:
4141
name: cliain
4242
path: bin/cliain/target/release/cliain
@@ -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@v6
6767
with:
6868
name: cliain
6969
path: bin/cliain/target/release/cliain
@@ -92,7 +92,7 @@ jobs:
9292
9393
- name: Configure AWS credentials for S3 AWS
9494
if: ${{ inputs.check-only != true }}
95-
uses: aws-actions/configure-aws-credentials@v4
95+
uses: aws-actions/configure-aws-credentials@v5
9696
env:
9797
AWS_ACCESS_KEY_ID: ""
9898
AWS_SECRET_ACCESS_KEY: ""

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

Lines changed: 3 additions & 3 deletions
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
@@ -65,7 +65,7 @@ jobs:
6565
echo "name=chain-bootstrapper-${{ env.ARTIFACT_NAME_SUFFIX }}" >> $GITHUB_OUTPUT
6666
6767
- name: Upload binary to GH Artifacts
68-
uses: actions/upload-artifact@v4
68+
uses: actions/upload-artifact@v5
6969
with:
7070
name: ${{ steps.get-artifact-name-binary.outputs.name }}
7171
path: target/${{ env.CARGO_FOLDER }}/chain-bootstrapper
@@ -89,7 +89,7 @@ jobs:
8989
echo "name=chain-bootstrapper-image-${{ env.ARTIFACT_NAME_SUFFIX }}" >> $GITHUB_OUTPUT
9090
9191
- name: Upload docker image to GH Artifacts
92-
uses: actions/upload-artifact@v4
92+
uses: actions/upload-artifact@v5
9393
with:
9494
name: ${{ steps.get-artifact-name-image.outputs.name }}
9595
path: chain-bootstrapper.tar

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

Lines changed: 2 additions & 2 deletions
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
@@ -47,7 +47,7 @@ jobs:
4747
echo "name=aleph-production-runtime" >> $GITHUB_OUTPUT
4848
4949
- name: Upload release runtime to GH artifacts
50-
uses: actions/upload-artifact@v4
50+
uses: actions/upload-artifact@v5
5151
with:
5252
name: ${{ steps.get-artifact-name.outputs.name }}
5353
path: target/production/wbuild/aleph-runtime/aleph_runtime.compact.compressed.wasm

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

Lines changed: 3 additions & 3 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@v6
2727
with:
2828
name: ${{ inputs.artifact-aleph-node-image }}
2929

@@ -44,7 +44,7 @@ jobs:
4444
echo "name=aleph-release-synthetic-docker" >> $GITHUB_OUTPUT
4545
4646
- name: Upload synthetic aleph-node image
47-
uses: actions/upload-artifact@v4
47+
uses: actions/upload-artifact@v5
4848
with:
4949
name: ${{ steps.get-synthetic-network-artifact-image-name.outputs.name }}
5050
path: aleph-node.tar

.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@v6
2626
with:
2727
name: aleph-production-runtime
2828

0 commit comments

Comments
 (0)