Skip to content

Commit 2593bed

Browse files
authored
Merge pull request #274 from NHSDigital/dependabot/github_actions/actions/download-artifact-5
Bump actions/download-artifact from 4 to 5
2 parents 82372cb + fe15d5a commit 2593bed

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/cicd-2-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
path: dist/lambda.zip
8383

8484
- name: "Download Built Lambdas"
85-
uses: actions/download-artifact@v4
85+
uses: actions/download-artifact@v5
8686
with:
8787
name: lambda
8888
path: ./build

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
path: dist/lambda.zip
112112

113113
- name: "Download Built Lambdas"
114-
uses: actions/download-artifact@v4
114+
uses: actions/download-artifact@v5
115115
with:
116116
name: lambda
117117
path: ./build

.github/workflows/manual-terraform-apply.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
path: dist/lambda.zip
4646

4747
- name: "Download Built Lambdas"
48-
uses: actions/download-artifact@v4
48+
uses: actions/download-artifact@v5
4949
with:
5050
name: lambda
5151
path: ./build

.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@v4
86+
uses: actions/download-artifact@v5
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@v4
123+
uses: actions/download-artifact@v5
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@v4
141+
uses: actions/download-artifact@v5
142142
with:
143143
path: summary
144144
pattern: ci-summary-*

0 commit comments

Comments
 (0)