Skip to content

Commit 3aab685

Browse files
Merge branch 'main' into dependabot/github_actions/actions/upload-artifact-7
2 parents 39f2034 + 41ec7c4 commit 3aab685

9 files changed

Lines changed: 633 additions & 488 deletions

File tree

.github/workflows/release_psu_to_ref.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
echo "## psuWorkflowRunID : [${{ github.event.inputs.psuWorkflowRunID }}](https://github.com/NHSDigital/eps-prescription-status-update-api/actions/runs/${{ github.event.inputs.psuWorkflowRunID }})" >> "$GITHUB_STEP_SUMMARY"
2222
2323
- name: Checkout local github actions
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v6
2525
with:
2626
ref: ${{ env.BRANCH_NAME }}
2727
fetch-depth: 0
@@ -33,7 +33,7 @@ jobs:
3333
pyproject.toml
3434
3535
- name: Configure AWS Credentials
36-
uses: aws-actions/configure-aws-credentials@v4
36+
uses: aws-actions/configure-aws-credentials@v6
3737
with:
3838
aws-region: eu-west-2
3939
role-to-assume: ${{ secrets.REF_CLOUD_FORMATION_DEPLOY_ROLE }}
@@ -50,12 +50,12 @@ jobs:
5050

5151
# using git commit sha for version of action to ensure we have stable version
5252
- name: Install asdf
53-
uses: asdf-vm/actions/setup@1902764435ca0dd2f3388eea723a4f92a4eb8302
53+
uses: asdf-vm/actions/setup@b7bcd026f18772e44fe1026d729e1611cc435d47
5454
with:
5555
asdf_branch: v0.11.3
5656

5757
- name: Cache asdf
58-
uses: actions/cache@v4
58+
uses: actions/cache@v5
5959
with:
6060
path: |
6161
~/.asdf
@@ -64,7 +64,7 @@ jobs:
6464
${{ runner.os }}-asdf-
6565
6666
- name: Install asdf dependencies in .tool-versions
67-
uses: asdf-vm/actions/install@1902764435ca0dd2f3388eea723a4f92a4eb8302
67+
uses: asdf-vm/actions/install@b7bcd026f18772e44fe1026d729e1611cc435d47
6868
with:
6969
asdf_branch: v0.11.3
7070
env:
@@ -112,7 +112,7 @@ jobs:
112112
aws secretsmanager get-secret-value --secret-id "${client_cert_arn}" --query SecretString --output text > ~/.proxygen/tmp/client_cert
113113
114114
- name: Configure AWS Credentials for api release
115-
uses: aws-actions/configure-aws-credentials@v4
115+
uses: aws-actions/configure-aws-credentials@v6
116116
with:
117117
aws-region: eu-west-2
118118
role-to-assume: ${{ secrets.PROXYGEN_PTL_ROLE }}

.github/workflows/run_cpsu_load.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,17 @@ jobs:
4242
echo "## maxVusers : ${{ github.event.inputs.maxVusers }}" >> "$GITHUB_STEP_SUMMARY"
4343
4444
- name: Checkout repo
45-
uses: actions/checkout@v4
45+
uses: actions/checkout@v6
4646
with:
4747
ref: ${{ env.BRANCH_NAME }}
4848

4949
- name: Install asdf
50-
uses: asdf-vm/actions/setup@1902764435ca0dd2f3388eea723a4f92a4eb8302
50+
uses: asdf-vm/actions/setup@b7bcd026f18772e44fe1026d729e1611cc435d47
5151
with:
5252
asdf_branch: v0.14.0
5353

5454
- name: Cache asdf
55-
uses: actions/cache@v4
55+
uses: actions/cache@v5
5656
with:
5757
path: |
5858
~/.asdf
@@ -61,7 +61,7 @@ jobs:
6161
${{ runner.os }}-asdf-
6262
6363
- name: Install asdf dependencies in .tool-versions
64-
uses: asdf-vm/actions/install@1902764435ca0dd2f3388eea723a4f92a4eb8302
64+
uses: asdf-vm/actions/install@b7bcd026f18772e44fe1026d729e1611cc435d47
6565
with:
6666
asdf_branch: v0.14.0
6767
env:
@@ -72,15 +72,15 @@ jobs:
7272

7373
- name: Assume dev artillery runner role
7474
if: github.event.inputs.environment == 'dev'
75-
uses: aws-actions/configure-aws-credentials@v4
75+
uses: aws-actions/configure-aws-credentials@v6
7676
with:
7777
aws-region: eu-west-2
7878
role-to-assume: ${{ secrets.DEV_ARTILLERY_RUNNER_ROLE }}
7979
role-session-name: github-actions-artillery
8080

8181
- name: Assume ref artillery runner role
8282
if: github.event.inputs.environment == 'ref'
83-
uses: aws-actions/configure-aws-credentials@v4
83+
uses: aws-actions/configure-aws-credentials@v6
8484
with:
8585
aws-region: eu-west-2
8686
role-to-assume: ${{ secrets.REF_ARTILLERY_RUNNER_ROLE }}

.github/workflows/run_notify_load.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,17 @@ jobs:
5151
fi
5252
5353
- name: Checkout repo
54-
uses: actions/checkout@v4
54+
uses: actions/checkout@v6
5555
with:
5656
ref: ${{ env.BRANCH_NAME }}
5757

5858
- name: Install asdf
59-
uses: asdf-vm/actions/setup@05e0d2ed97b598bfce82fd30daf324ae0c4570e6
59+
uses: asdf-vm/actions/setup@b7bcd026f18772e44fe1026d729e1611cc435d47
6060
with:
6161
asdf_branch: v0.14.0
6262

6363
- name: Cache asdf
64-
uses: actions/cache@v4
64+
uses: actions/cache@v5
6565
with:
6666
path: |
6767
~/.asdf
@@ -70,7 +70,7 @@ jobs:
7070
${{ runner.os }}-asdf-
7171
7272
- name: Install asdf dependencies in .tool-versions
73-
uses: asdf-vm/actions/install@05e0d2ed97b598bfce82fd30daf324ae0c4570e6
73+
uses: asdf-vm/actions/install@b7bcd026f18772e44fe1026d729e1611cc435d47
7474
with:
7575
asdf_branch: v0.14.0
7676
env:
@@ -81,15 +81,15 @@ jobs:
8181

8282
- name: Assume dev artillery runner role
8383
if: github.event.inputs.environment == 'dev'
84-
uses: aws-actions/configure-aws-credentials@v4
84+
uses: aws-actions/configure-aws-credentials@v6
8585
with:
8686
aws-region: eu-west-2
8787
role-to-assume: ${{ secrets.DEV_ARTILLERY_RUNNER_ROLE }}
8888
role-session-name: github-actions-artillery
8989

9090
- name: Assume ref artillery runner role
9191
if: github.event.inputs.environment == 'ref'
92-
uses: aws-actions/configure-aws-credentials@v4
92+
uses: aws-actions/configure-aws-credentials@v6
9393
with:
9494
aws-region: eu-west-2
9595
role-to-assume: ${{ secrets.REF_ARTILLERY_RUNNER_ROLE }}

.github/workflows/run_psu_load.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,17 @@ jobs:
4242
echo "## maxVusers : ${{ github.event.inputs.maxVusers }}" >> "$GITHUB_STEP_SUMMARY"
4343
4444
- name: Checkout repo
45-
uses: actions/checkout@v4
45+
uses: actions/checkout@v6
4646
with:
4747
ref: ${{ env.BRANCH_NAME }}
4848

4949
- name: Install asdf
50-
uses: asdf-vm/actions/setup@1902764435ca0dd2f3388eea723a4f92a4eb8302
50+
uses: asdf-vm/actions/setup@b7bcd026f18772e44fe1026d729e1611cc435d47
5151
with:
5252
asdf_branch: v0.14.0
5353

5454
- name: Cache asdf
55-
uses: actions/cache@v4
55+
uses: actions/cache@v5
5656
with:
5757
path: |
5858
~/.asdf
@@ -61,7 +61,7 @@ jobs:
6161
${{ runner.os }}-asdf-
6262
6363
- name: Install asdf dependencies in .tool-versions
64-
uses: asdf-vm/actions/install@1902764435ca0dd2f3388eea723a4f92a4eb8302
64+
uses: asdf-vm/actions/install@b7bcd026f18772e44fe1026d729e1611cc435d47
6565
with:
6666
asdf_branch: v0.14.0
6767
env:
@@ -72,15 +72,15 @@ jobs:
7272

7373
- name: Assume dev artillery runner role
7474
if: github.event.inputs.environment == 'dev'
75-
uses: aws-actions/configure-aws-credentials@v4
75+
uses: aws-actions/configure-aws-credentials@v6
7676
with:
7777
aws-region: eu-west-2
7878
role-to-assume: ${{ secrets.DEV_ARTILLERY_RUNNER_ROLE }}
7979
role-session-name: github-actions-artillery
8080

8181
- name: Assume ref artillery runner role
8282
if: github.event.inputs.environment == 'ref'
83-
uses: aws-actions/configure-aws-credentials@v4
83+
uses: aws-actions/configure-aws-credentials@v6
8484
with:
8585
aws-region: eu-west-2
8686
role-to-assume: ${{ secrets.REF_ARTILLERY_RUNNER_ROLE }}

0 commit comments

Comments
 (0)