Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/base-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ jobs:
--region eu-west-2

- name: "Upload lambda artifact for the current workflow"
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: lambda-${{ needs.metadata.outputs.tag }}
path: ./dist/lambda.zip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cicd-2-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
make build

- name: "Upload lambda artefact for cross-workflow use"
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: lambda-${{ needs.metadata.outputs.version }}
path: dist/lambda.zip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/monthly-capacity-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
AWS_REGION: eu-west-2

- name: Upload dashboard export
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: dashboard-${{ matrix.env_config.name }}
path: dashboard_exports/**/*
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
run: python3 scripts/generate_dashboard_report.py --input dashboard_exports

- name: Upload report as artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: capacity-report
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-candidate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ jobs:

- name: "Upload lambda artifact"
if: steps.check.outputs.exists == 'true'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: lambda-${{ needs.validate.outputs.dev_tag }}
path: dist/lambda.zip
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
echo "✅ Uploaded artifact to s3://$BUCKET/artifacts/$TAG/lambda.zip"

- name: "Upload lambda artifact"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: lambda-${{ needs.validate.outputs.dev_tag }}
path: dist/lambda.zip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sonarcube-scan-main-branch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: |
make test-unit
- name: "Save the coverage check result"
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: coverage.xml
path: coverage.xml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stage-2-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
run: |
make test-unit
- name: "Save the coverage check result"
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: coverage.xml
path: coverage.xml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stage-3-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
make dependencies install-python
make build
- name: "Upload lambda artefact"
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: lambda
path: dist/lambda.zip
2 changes: 1 addition & 1 deletion .github/workflows/stage-4-acceptance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:
echo "Nothing to save"
- name: Upload Integration Test Results
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: integration-test-results
path: integration-test-results.xml
Expand Down
Loading