Skip to content

Commit 86614e9

Browse files
Bump actions/upload-artifact from 5 to 6
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 30f6e37 commit 86614e9

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/base-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ jobs:
154154
--region eu-west-2
155155
156156
- name: "Upload lambda artifact for the current workflow"
157-
uses: actions/upload-artifact@v5
157+
uses: actions/upload-artifact@v6
158158
with:
159159
name: lambda-${{ needs.metadata.outputs.tag }}
160160
path: ./dist/lambda.zip

.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
make build
8383
8484
- name: "Upload lambda artefact for cross-workflow use"
85-
uses: actions/upload-artifact@v5
85+
uses: actions/upload-artifact@v6
8686
with:
8787
name: lambda-${{ needs.metadata.outputs.version }}
8888
path: dist/lambda.zip

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
AWS_REGION: eu-west-2
4141

4242
- name: Upload report as artifact
43-
uses: actions/upload-artifact@v5
43+
uses: actions/upload-artifact@v6
4444
with:
4545
name: capacity-report
4646
path: |

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: |
2929
make test-unit
3030
- name: "Save the coverage check result"
31-
uses: actions/upload-artifact@v5
31+
uses: actions/upload-artifact@v6
3232
with:
3333
name: coverage.xml
3434
path: coverage.xml

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
run: |
4949
make test-unit
5050
- name: "Save the coverage check result"
51-
uses: actions/upload-artifact@v5
51+
uses: actions/upload-artifact@v6
5252
with:
5353
name: coverage.xml
5454
path: coverage.xml

.github/workflows/stage-3-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
make dependencies install-python
5050
make build
5151
- name: "Upload lambda artefact"
52-
uses: actions/upload-artifact@v5
52+
uses: actions/upload-artifact@v6
5353
with:
5454
name: lambda
5555
path: dist/lambda.zip

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
echo "Nothing to save"
133133
- name: Upload Integration Test Results
134134
if: always()
135-
uses: actions/upload-artifact@v5
135+
uses: actions/upload-artifact@v6
136136
with:
137137
name: integration-test-results
138138
path: integration-test-results.xml

0 commit comments

Comments
 (0)