Skip to content

Commit aea9363

Browse files
authored
Merge pull request #2020 from input-output-hk/djo/2018/ci/upgrade_actions_to_latest
Upgrade actions to latest
2 parents 222ea17 + 2282539 commit aea9363

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
toolchain: stable
4545

4646
- name: Download built artifacts (Linux-x64)
47-
uses: dawidd6/action-download-artifact@v3
47+
uses: dawidd6/action-download-artifact@v6
4848
with:
4949
name: mithril-distribution-Linux-X64
5050
path: ./bin
@@ -53,7 +53,7 @@ jobs:
5353
workflow_conclusion: success
5454

5555
- name: Download test runners
56-
uses: dawidd6/action-download-artifact@v3
56+
uses: dawidd6/action-download-artifact@v6
5757
with:
5858
name: mithril-tooling-Linux-X64
5959
path: ./bin

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ jobs:
458458
path: ${{ matrix.project }}
459459

460460
- name: Build and push Docker image
461-
uses: docker/build-push-action@v5
461+
uses: docker/build-push-action@v6
462462
with:
463463
context: ${{ env.CONTEXT }}
464464
file: ${{ env.DOCKER_FILE }}
@@ -925,7 +925,7 @@ jobs:
925925
sed -i '1s/^/<script type="text\/javascript"> if (window.location.href.endsWith("\/index.html")) { end_of_clean_url = window.location.href.lastIndexOf("\/"); window.location.href = window.location.href.substring(0, end_of_clean_url); } <\/script>\n/' ./github-pages/doc/index.html
926926
927927
- name: Mithril / Publish GitHub Pages
928-
uses: peaceiris/actions-gh-pages@v3
928+
uses: peaceiris/actions-gh-pages@v4
929929
with:
930930
github_token: ${{ secrets.GITHUB_TOKEN || github.token }}
931931
publish_dir: ./github-pages

.github/workflows/pre-release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
run: mkdir package
2020

2121
- name: Download built artifacts (Linux-x64)
22-
uses: dawidd6/action-download-artifact@v3
22+
uses: dawidd6/action-download-artifact@v6
2323
with:
2424
name: mithril-distribution-Linux-X64
2525
path: ./package-Linux-X64
@@ -28,7 +28,7 @@ jobs:
2828
workflow_conclusion: success
2929

3030
- name: Download Debian packages (Linux-X64)
31-
uses: dawidd6/action-download-artifact@v3
31+
uses: dawidd6/action-download-artifact@v6
3232
with:
3333
name: mithril-deb-packages-Linux-X64
3434
path: ./package
@@ -37,7 +37,7 @@ jobs:
3737
workflow_conclusion: success
3838

3939
- name: Download built artifacts (macOS-x64)
40-
uses: dawidd6/action-download-artifact@v3
40+
uses: dawidd6/action-download-artifact@v6
4141
with:
4242
name: mithril-distribution-macOS-X64
4343
path: ./package-macOS-X64
@@ -46,7 +46,7 @@ jobs:
4646
workflow_conclusion: success
4747

4848
- name: Download built artifacts (macOS-ARM64)
49-
uses: dawidd6/action-download-artifact@v3
49+
uses: dawidd6/action-download-artifact@v6
5050
with:
5151
name: mithril-distribution-macOS-ARM64
5252
path: ./package-macOS-ARM64
@@ -55,7 +55,7 @@ jobs:
5555
workflow_conclusion: success
5656

5757
- name: Download built artifacts (Windows-x64)
58-
uses: dawidd6/action-download-artifact@v3
58+
uses: dawidd6/action-download-artifact@v6
5959
with:
6060
name: mithril-distribution-Windows-X64
6161
path: ./package-Windows-X64
@@ -129,7 +129,7 @@ jobs:
129129
type=raw,value=${{ github.ref_name }}-{{sha}}
130130
131131
- name: Download built artifacts (Linux-x64)
132-
uses: dawidd6/action-download-artifact@v3
132+
uses: dawidd6/action-download-artifact@v6
133133
with:
134134
name: mithril-distribution-Linux-X64
135135
path: ${{ matrix.project }}
@@ -138,7 +138,7 @@ jobs:
138138
workflow_conclusion: success
139139

140140
- name: Build and push Docker image
141-
uses: docker/build-push-action@v5
141+
uses: docker/build-push-action@v6
142142
with:
143143
context: ${{ env.CONTEXT }}
144144
file: ${{ env.DOCKER_FILE }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
type=raw,value=${{ github.ref_name }}-{{sha}}
4949
5050
- name: Download built artifacts (Linux-x64)
51-
uses: dawidd6/action-download-artifact@v3
51+
uses: dawidd6/action-download-artifact@v6
5252
with:
5353
name: mithril-distribution-Linux-X64
5454
path: ${{ matrix.project }}
@@ -57,7 +57,7 @@ jobs:
5757
workflow_conclusion: success
5858

5959
- name: Build and push Docker image
60-
uses: docker/build-push-action@v5
60+
uses: docker/build-push-action@v6
6161
with:
6262
context: ${{ env.CONTEXT }}
6363
file: ${{ env.DOCKER_FILE }}

.github/workflows/test-client.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
echo "csd_enabled=$CSD_CAPABILITY" >> $GITHUB_OUTPUT
9494
9595
- name: Checkout binary
96-
uses: dawidd6/action-download-artifact@v3
96+
uses: dawidd6/action-download-artifact@v6
9797
with:
9898
name: mithril-distribution-${{ runner.os }}-${{ runner.arch }}
9999
path: ./bin
@@ -285,7 +285,7 @@ jobs:
285285
uses: actions/checkout@v4
286286

287287
- name: Download built artifacts
288-
uses: dawidd6/action-download-artifact@v3
288+
uses: dawidd6/action-download-artifact@v6
289289
with:
290290
name: mithril-distribution-wasm
291291
path: ./mithril-client-wasm

.github/workflows/test-docker-distribution.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
git checkout ${{ inputs.commit_sha }}
7575
7676
- name: Download built artifacts (Linux-x64)
77-
uses: dawidd6/action-download-artifact@v3
77+
uses: dawidd6/action-download-artifact@v6
7878
with:
7979
name: mithril-distribution-Linux-X64
8080
path: ${{ matrix.project }}
@@ -99,7 +99,7 @@ jobs:
9999
type=raw,value=test-${{ inputs.distribution_code }}-${{ steps.slug.outputs.sha8 }}
100100
101101
- name: Build and push Docker image
102-
uses: docker/build-push-action@v5
102+
uses: docker/build-push-action@v6
103103
with:
104104
context: ${{ env.CONTEXT }}
105105
file: ${{ env.DOCKER_FILE }}

0 commit comments

Comments
 (0)