Skip to content

Commit 2c3dd53

Browse files
authored
Merge pull request #2784 from input-output-hk/djo/upgrade_actions
chore(ci): upgrade actions versions
2 parents 716b468 + 1a63ad5 commit 2c3dd53

File tree

14 files changed

+97
-97
lines changed

14 files changed

+97
-97
lines changed

.github/workflows/actions/build-upload-mithril-artifact/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ runs:
1919
run: echo "short_sha=$(echo ${{ github.sha }} | cut -c1-7)" >> $GITHUB_OUTPUT
2020

2121
- name: Set up Python
22-
uses: actions/setup-python@v5
22+
uses: actions/setup-python@v6
2323
with:
2424
python-version: "3.x"
2525

@@ -39,7 +39,7 @@ runs:
3939
run: cargo build --lib --release ${{ inputs.libraries-build-args }} ${{ inputs.common-build-args }}
4040

4141
- name: Publish Mithril Distribution (${{ runner.os }}-${{ runner.arch }})
42-
uses: actions/upload-artifact@v4
42+
uses: actions/upload-artifact@v5
4343
with:
4444
name: mithril-distribution-${{ runner.os }}-${{ runner.arch }}
4545
path: |

.github/workflows/actions/deploy-terraform-infrastructure/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ runs:
211211
using: "composite"
212212
steps:
213213
- name: Checkout sources
214-
uses: actions/checkout@v4
214+
uses: actions/checkout@v5
215215

216216
- name: Setup Terraform
217217
uses: hashicorp/setup-terraform@v3

.github/workflows/aggregator-stress-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
runs-on: ubuntu-24.04
4040
steps:
4141
- name: Checkout sources
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v5
4343

4444
- name: Prepare environment variables
4545
id: prepare
@@ -60,7 +60,7 @@ jobs:
6060
toolchain: stable
6161

6262
- name: Download built artifacts (Linux-x64)
63-
uses: dawidd6/action-download-artifact@v6
63+
uses: dawidd6/action-download-artifact@v11
6464
with:
6565
name: mithril-distribution-Linux-X64
6666
path: ./bin
@@ -70,7 +70,7 @@ jobs:
7070
workflow_conclusion: success
7171

7272
- name: Download test runners
73-
uses: dawidd6/action-download-artifact@v6
73+
uses: dawidd6/action-download-artifact@v11
7474
with:
7575
name: mithril-tooling-Linux-X64
7676
path: ./bin
@@ -97,7 +97,7 @@ jobs:
9797
9898
- name: Upload stress test artifacts
9999
if: ${{ failure() }}
100-
uses: actions/upload-artifact@v4
100+
uses: actions/upload-artifact@v5
101101
with:
102102
name: aggregator-stress-test-artifacts-run_${{ github.run_number }}-attempt_${{ github.run_attempt }}
103103
path: |

.github/workflows/backward-compatibility.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
tags: ${{ steps.tags-test-lab.outputs.tags }}
6565
steps:
6666
- name: Checkout
67-
uses: actions/checkout@v4
67+
uses: actions/checkout@v5
6868
with:
6969
fetch-depth: 0
7070
fetch-tags: true
@@ -90,7 +90,7 @@ jobs:
9090
cp ./target/release/mithril-end-to-end ./mithril-binaries/e2e-${{ inputs.e2e-release }}
9191
9292
- name: Upload Mithril binaries
93-
uses: actions/upload-artifact@v4
93+
uses: actions/upload-artifact@v5
9494
with:
9595
name: mithril-binaries
9696
path: ./mithril-binaries
@@ -116,10 +116,10 @@ jobs:
116116

117117
steps:
118118
- name: Checkout
119-
uses: actions/checkout@v4
119+
uses: actions/checkout@v5
120120

121121
- name: Download binaries
122-
uses: actions/download-artifact@v4
122+
uses: actions/download-artifact@v6
123123
with:
124124
name: mithril-binaries
125125
path: ./mithril-binaries
@@ -201,14 +201,14 @@ jobs:
201201
202202
- name: Upload test result JSON
203203
if: success() || failure()
204-
uses: actions/upload-artifact@v4
204+
uses: actions/upload-artifact@v5
205205
with:
206206
name: ${{ env.RESULT_FILE_NAME }}
207207
path: ./${{ env.RESULT_FILE_NAME }}.json
208208

209209
- name: Upload E2E Tests Artifacts
210210
if: ${{ failure() }}
211-
uses: actions/upload-artifact@v4
211+
uses: actions/upload-artifact@v5
212212
with:
213213
name: mithril-e2e-tests-artifacts-run_${{ github.run_number }}-attempt_${{ github.run_attempt }}-tag_${{ matrix.tag }}-node-${{ matrix.node }}-cardano-${{ matrix.cardano_node_version }}-run_id_${{ matrix.run_id }}
214214
path: |
@@ -226,7 +226,7 @@ jobs:
226226

227227
steps:
228228
- name: Download all test result artifacts
229-
uses: actions/download-artifact@v4
229+
uses: actions/download-artifact@v6
230230
with:
231231
path: ./test-results
232232
pattern: e2e-test-result*

0 commit comments

Comments
 (0)