File tree Expand file tree Collapse file tree 8 files changed +15
-15
lines changed
Expand file tree Collapse file tree 8 files changed +15
-15
lines changed Original file line number Diff line number Diff 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
@@ -182,7 +182,7 @@ jobs:
182182 terraform_version : ${{ needs.metadata.outputs.terraform_version }}
183183
184184 - name : " Download Lambda Artifact"
185- uses : actions/download-artifact@v6
185+ uses : actions/download-artifact@v7
186186 with :
187187 name : lambda-${{ needs.metadata.outputs.tag }}
188188 path : ./dist
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 7373 aws-region : eu-west-2
7474
7575 - name : " Download lambda artefact from dev workflow"
76- uses : actions/download-artifact@v6
76+ uses : actions/download-artifact@v7
7777 with :
7878 name : lambda-${{ needs.metadata.outputs.tag }}
7979 path : ./dist
Original file line number Diff line number Diff line change 5555 AWS_REGION : eu-west-2
5656
5757 - name : Upload dashboard export
58- uses : actions/upload-artifact@v4
58+ uses : actions/upload-artifact@v6
5959 with :
6060 name : dashboard-${{ matrix.env_config.name }}
6161 path : dashboard_exports/**/*
7575 python-version : " 3.11"
7676
7777 - name : Download all dashboard exports
78- uses : actions/download-artifact@v4
78+ uses : actions/download-artifact@v7
7979 with :
8080 path : dashboard_exports
8181 pattern : dashboard-*
8585 run : python3 scripts/generate_dashboard_report.py --input dashboard_exports
8686
8787 - name : Upload report as artifact
88- uses : actions/upload-artifact@v5
88+ uses : actions/upload-artifact@v6
8989 with :
9090 name : capacity-report
9191 path : |
Original file line number Diff line number Diff line change 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
4141 with :
4242 fetch-depth : 0
4343 - name : " Get the coverage report"
44- uses : actions/download-artifact@v6
44+ uses : actions/download-artifact@v7
4545 with :
4646 name : coverage.xml
4747 - name : Run static analysis script
Original file line number Diff line number Diff line change 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
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@v6
86+ uses : actions/download-artifact@v7
8787 with :
8888 name : coverage.xml
8989 - name : " Perform static analysis"
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ jobs:
120120 with :
121121 python-version : ' 3.13'
122122 - name : " Get lambda artefact"
123- uses : actions/download-artifact@v6
123+ uses : actions/download-artifact@v7
124124 with :
125125 name : lambda
126126 path : dist
@@ -132,13 +132,13 @@ 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
139139 - name : Gather Integration Test Summaries
140140 if : always()
141- uses : actions/download-artifact@v6
141+ uses : actions/download-artifact@v7
142142 with :
143143 path : summary
144144 pattern : ci-summary-*
You can’t perform that action at this time.
0 commit comments