Skip to content

Commit 1c4cfb4

Browse files
authored
Merge pull request #142 from NHSDigital/dependabot/apm-6800-mar2026
npm dependabot updates
2 parents 2cdbf8a + 373526f commit 1c4cfb4

10 files changed

Lines changed: 2005 additions & 1230 deletions

File tree

azure/azure-pr-pipeline.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,5 @@ extends:
3939
post_deploy:
4040
- template: templates/e2e.yml
4141
parameters:
42-
test_type: e2e
42+
test_type: e2e
43+
python_version: ${{ variables.python_version}}

azure/azure-release-pipeline.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,26 +40,31 @@ extends:
4040
- template: templates/e2e.yml
4141
parameters:
4242
test_type: e2e
43+
python_version: ${{ variables.python_version}}
4344
- environment: internal-dev-sandbox
4445
post_deploy:
4546
- template: templates/e2e.yml
4647
parameters:
4748
test_type: smoketest
49+
python_version: ${{ variables.python_version}}
4850
- environment: internal-qa
4951
post_deploy:
5052
- template: templates/e2e.yml
5153
parameters:
5254
test_type: e2e
55+
python_version: ${{ variables.python_version}}
5356
- environment: internal-qa-sandbox
5457
post_deploy:
5558
- template: templates/e2e.yml
5659
parameters:
5760
test_type: smoketest
61+
python_version: ${{ variables.python_version}}
5862
- environment: ref
5963
post_deploy:
6064
- template: templates/e2e.yml
6165
parameters:
6266
test_type: smoketest
67+
python_version: ${{ variables.python_version}}
6368
depends_on:
6469
- internal_qa
6570
- environment: int
@@ -68,6 +73,7 @@ extends:
6873
parameters:
6974
app_id: "84aa2219-7170-4279-93fb-3d37b89bbc01"
7075
test_type: smoketest
76+
python_version: ${{ variables.python_version}}
7177
depends_on:
7278
- internal_qa
7379
- environment: sandbox
@@ -76,6 +82,7 @@ extends:
7682
parameters:
7783
app_id: "a50e2f01-ea28-41c9-8666-850c034ddd82"
7884
test_type: smoketest
85+
python_version: ${{ variables.python_version}}
7986
depends_on:
8087
- internal_qa
8188
- environment: prod
@@ -84,6 +91,7 @@ extends:
8491
parameters:
8592
app_id: "72ada63b-9d70-4ca2-b9f2-cd1ce74c2dde"
8693
test_type: smoketest
94+
python_version: ${{ variables.python_version}}
8795
depends_on:
8896
- int
8997
- ref

azure/project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ variables:
22
service_name: sync-wrap
33
service_base_path: sync-wrap
44
short_service_name: sync-wrap
5-
python_version: 3.10
5+
python_version: "3.10"

azure/templates/e2e.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,14 @@ parameters:
33
- name: app_id
44
type: string
55
default: ""
6+
- name: python_version
7+
default: ""
68

79
steps:
10+
- task: UsePythonVersion@0
11+
displayName: 'Use Python 3.10'
12+
inputs:
13+
versionSpec: '3.10'
814

915
- task: s3-cache-action@1
1016
inputs:

0 commit comments

Comments
 (0)