Skip to content

Commit 7858399

Browse files
authored
Merge branch 'main' into feature/eja-eli-510-add-CSOC-api-log-forwarding
2 parents 903170b + 17d7212 commit 7858399

File tree

10 files changed

+85
-34
lines changed

10 files changed

+85
-34
lines changed

.github/workflows/base-deploy.yml

Lines changed: 2 additions & 2 deletions
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@v4
157+
uses: actions/upload-artifact@v5
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@v5
185+
uses: actions/download-artifact@v6
186186
with:
187187
name: lambda-${{ needs.metadata.outputs.tag }}
188188
path: ./dist

.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@v4
85+
uses: actions/upload-artifact@v5
8686
with:
8787
name: lambda-${{ needs.metadata.outputs.version }}
8888
path: dist/lambda.zip

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

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

7676
- name: "Download lambda artefact from dev workflow"
77-
uses: actions/download-artifact@v5
77+
uses: actions/download-artifact@v6
7878
with:
7979
name: lambda-${{ needs.metadata.outputs.tag }}
8080
path: ./dist

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

Lines changed: 2 additions & 2 deletions
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@v4
31+
uses: actions/upload-artifact@v5
3232
with:
3333
name: coverage.xml
3434
path: coverage.xml
@@ -41,7 +41,7 @@ jobs:
4141
with:
4242
fetch-depth: 0
4343
- name: "Get the coverage report"
44-
uses: actions/download-artifact@v5
44+
uses: actions/download-artifact@v6
4545
with:
4646
name: coverage.xml
4747
- name: Run static analysis script

.github/workflows/stage-1-commit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
output_format: sarif
102102
output_file_path: checkov-report.sarif
103103
- name: Upload Checkov results to GitHub Security tab
104-
uses: actions/upload-artifact@v4
104+
uses: actions/upload-artifact@v5
105105
with:
106106
name: checkov_results
107107
path: checkov-report.sarif

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

Lines changed: 2 additions & 2 deletions
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@v4
51+
uses: actions/upload-artifact@v5
5252
with:
5353
name: coverage.xml
5454
path: coverage.xml
@@ -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@v5
86+
uses: actions/download-artifact@v6
8787
with:
8888
name: coverage.xml
8989
- name: "Perform static analysis"

.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@v4
52+
uses: actions/upload-artifact@v5
5353
with:
5454
name: lambda
5555
path: dist/lambda.zip

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

Lines changed: 3 additions & 3 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@v5
123+
uses: actions/download-artifact@v6
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@v4
135+
uses: actions/upload-artifact@v5
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@v5
141+
uses: actions/download-artifact@v6
142142
with:
143143
path: summary
144144
pattern: ci-summary-*

poetry.lock

Lines changed: 69 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ jsonpath-rw = "^1.4.0"
4444
semver = "^3.0.4"
4545
gitpython = "^3.1.45"
4646
pytest = "^8.4.1"
47-
pytest-asyncio = "^1.1.0"
47+
pytest-asyncio = "^1.2.0"
4848
pytest-cov = "^7.0.0"
49-
pytest-nhsd-apim = "^5.0.4"
49+
pytest-nhsd-apim = "^5.0.14"
5050
aiohttp = "^3.12.15"
5151
awscli = "^1.37.24"
5252
awscli-local = "^0.22.0"
@@ -60,7 +60,7 @@ pytest-freezer = "^0.4.9"
6060
moto = "^5.1.13"
6161
requests = "^2.32.5"
6262
jsonschema = "^4.25.1"
63-
behave = "^1.2.6"
63+
behave = "^1.3.3"
6464
python-dotenv = "^1.1.1"
6565
openapi-spec-validator = "^0.7.2"
6666
pip-licenses = "^5.0.0"

0 commit comments

Comments
 (0)