Skip to content

Commit eabcd0d

Browse files
Bump actions/download-artifact from 4 to 8
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 8. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v8) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 4ff5a3e commit eabcd0d

7 files changed

Lines changed: 9 additions & 9 deletions

.github/workflows/base-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ jobs:
182182
terraform_version: ${{ needs.metadata.outputs.terraform_version }}
183183

184184
- name: "Download Lambda Artifact"
185-
uses: actions/download-artifact@v7
185+
uses: actions/download-artifact@v8
186186
with:
187187
name: lambda-${{ needs.metadata.outputs.tag }}
188188
path: ./dist

.github/workflows/cicd-3-test-deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
aws-region: eu-west-2
7474

7575
- name: "Download lambda artefact from dev workflow"
76-
uses: actions/download-artifact@v7
76+
uses: actions/download-artifact@v8
7777
with:
7878
name: lambda-${{ needs.metadata.outputs.tag }}
7979
path: ./dist

.github/workflows/monthly-capacity-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
python-version: "3.11"
7676

7777
- name: Download all dashboard exports
78-
uses: actions/download-artifact@v7
78+
uses: actions/download-artifact@v8
7979
with:
8080
path: dashboard_exports
8181
pattern: dashboard-*

.github/workflows/release-candidate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ jobs:
216216
terraform_version: $(grep '^terraform' .tool-versions | cut -f2 -d' ')
217217

218218
- name: "Download lambda artifact"
219-
uses: actions/download-artifact@v4
219+
uses: actions/download-artifact@v8
220220
with:
221221
name: lambda-${{ needs.validate.outputs.dev_tag }}
222222
path: dist
@@ -317,7 +317,7 @@ jobs:
317317
terraform_version: $(grep '^terraform' .tool-versions | cut -f2 -d' ')
318318

319319
- name: "Download lambda artifact"
320-
uses: actions/download-artifact@v4
320+
uses: actions/download-artifact@v8
321321
with:
322322
name: lambda-${{ needs.validate.outputs.dev_tag }}
323323
path: dist

.github/workflows/sonarcube-scan-main-branch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
with:
4242
fetch-depth: 0
4343
- name: "Get the coverage report"
44-
uses: actions/download-artifact@v7
44+
uses: actions/download-artifact@v8
4545
with:
4646
name: coverage.xml
4747
- name: Run static analysis script

.github/workflows/stage-2-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
with:
8484
fetch-depth: 0 # Full history is needed to improving relevancy of reporting
8585
- name: "Get the coverage report"
86-
uses: actions/download-artifact@v7
86+
uses: actions/download-artifact@v8
8787
with:
8888
name: coverage.xml
8989
- name: "Perform static analysis"

.github/workflows/stage-4-acceptance.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
with:
121121
python-version: '3.13'
122122
- name: "Get lambda artefact"
123-
uses: actions/download-artifact@v7
123+
uses: actions/download-artifact@v8
124124
with:
125125
name: lambda
126126
path: dist
@@ -138,7 +138,7 @@ jobs:
138138
path: integration-test-results.xml
139139
- name: Gather Integration Test Summaries
140140
if: always()
141-
uses: actions/download-artifact@v7
141+
uses: actions/download-artifact@v8
142142
with:
143143
path: summary
144144
pattern: ci-summary-*

0 commit comments

Comments
 (0)