Skip to content

Commit dce6c60

Browse files
authored
CCM-10004: dependabot updates (#641)
1 parent ef263f1 commit dce6c60

27 files changed

+257
-204
lines changed

.github/workflows/cicd-1-pull-request.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
does_pull_request_exist: ${{ steps.pr_exists.outputs.does_pull_request_exist }}
2525
steps:
2626
- name: "Checkout code"
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v5.0.0
2828
- name: "Set CI/CD variables"
2929
id: variables
3030
run: |

.github/workflows/dispatch_internal_repo_workflow.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
runs-on: ubuntu-latest
5454

5555
steps:
56-
- uses: actions/checkout@v5
56+
- uses: actions/checkout@v5.0.0
5757

5858
- name: Trigger nhs-notify-internal workflow
5959
shell: bash

.github/workflows/reusable_internal_repo_build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
contents: read
4343

4444
steps:
45-
- uses: actions/checkout@v5
45+
- uses: actions/checkout@v5.0.0
4646

4747
- name: Trigger nhs-notify-internal static environment workflow deployment
4848
shell: bash

.github/workflows/scheduled-repository-template-sync.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616

1717
steps:
1818
- name: Check out the repository
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v5.0.0
2020

2121
- name: Check out external repository
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v5.0.0
2323
with:
2424
repository: NHSDigital/nhs-notify-repository-template
2525
path: nhs-notify-repository-template

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
steps:
3434
- name: "Checkout code"
35-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
35+
uses: actions/checkout@v5.0.0
3636
with:
3737
persist-credentials: false
3838

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

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
timeout-minutes: 5
4040
steps:
4141
- name: "Checkout code"
42-
uses: actions/checkout@v5
42+
uses: actions/checkout@v5.0.0
4343
with:
4444
fetch-depth: 0 # Full history is needed to scan all commits
4545
- name: "Scan secrets"
@@ -50,7 +50,7 @@ jobs:
5050
timeout-minutes: 5
5151
steps:
5252
- name: "Checkout code"
53-
uses: actions/checkout@v5
53+
uses: actions/checkout@v5.0.0
5454
with:
5555
fetch-depth: 0 # Full history is needed to compare branches
5656
- name: "Check file format"
@@ -61,7 +61,7 @@ jobs:
6161
timeout-minutes: 5
6262
steps:
6363
- name: "Checkout code"
64-
uses: actions/checkout@v5
64+
uses: actions/checkout@v5.0.0
6565
with:
6666
fetch-depth: 0 # Full history is needed to compare branches
6767
- name: "Check Markdown format"
@@ -75,7 +75,7 @@ jobs:
7575
contents: write
7676
steps:
7777
- name: "Checkout code"
78-
uses: actions/checkout@v5
78+
uses: actions/checkout@v5.0.0
7979
with:
8080
fetch-depth: 0 # Full history is needed to compare branches
8181
- name: "Check to see if Terraform Docs are up-to-date"
@@ -96,7 +96,7 @@ jobs:
9696
timeout-minutes: 5
9797
steps:
9898
- name: "Checkout code"
99-
uses: actions/checkout@v5
99+
uses: actions/checkout@v5.0.0
100100
with:
101101
fetch-depth: 0 # Full history is needed to compare branches
102102
- name: "Check English usage"
@@ -107,7 +107,7 @@ jobs:
107107
timeout-minutes: 5
108108
steps:
109109
- name: "Checkout code"
110-
uses: actions/checkout@v5
110+
uses: actions/checkout@v5.0.0
111111
with:
112112
fetch-depth: 0 # Full history is needed to compare branches
113113
- name: "Check TODO usage"
@@ -119,7 +119,7 @@ jobs:
119119
terraform_changed: ${{ steps.check.outputs.terraform_changed }}
120120
steps:
121121
- name: "Checkout code"
122-
uses: actions/checkout@v5
122+
uses: actions/checkout@v5.0.0
123123

124124
- name: "Check for Terraform changes"
125125
id: check
@@ -143,7 +143,7 @@ jobs:
143143
if: needs.detect-terraform-changes.outputs.terraform_changed == 'true'
144144
steps:
145145
- name: "Checkout code"
146-
uses: actions/checkout@v5
146+
uses: actions/checkout@v5.0.0
147147
- name: "Lint Terraform"
148148
uses: ./.github/actions/lint-terraform
149149
trivy:
@@ -154,7 +154,7 @@ jobs:
154154
if: needs.detect-terraform-changes.outputs.terraform_changed == 'true'
155155
steps:
156156
- name: "Checkout code"
157-
uses: actions/checkout@v5
157+
uses: actions/checkout@v5.0.0
158158
- name: "Setup ASDF"
159159
uses: asdf-vm/actions/setup@v4
160160
- name: "Perform Setup"
@@ -170,7 +170,7 @@ jobs:
170170
timeout-minutes: 5
171171
steps:
172172
- name: "Checkout code"
173-
uses: actions/checkout@v5
173+
uses: actions/checkout@v5.0.0
174174
- name: "Count lines of code"
175175
uses: ./.github/actions/create-lines-of-code-report
176176
with:
@@ -189,7 +189,7 @@ jobs:
189189
timeout-minutes: 5
190190
steps:
191191
- name: "Checkout code"
192-
uses: actions/checkout@v5
192+
uses: actions/checkout@v5.0.0
193193
- name: "Scan dependencies"
194194
uses: ./.github/actions/scan-dependencies
195195
with:

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
timeout-minutes: 5
4848
steps:
4949
- name: "Checkout code"
50-
uses: actions/checkout@v5
50+
uses: actions/checkout@v5.0.0
5151
- name: "Repo setup"
5252
run: |
5353
npm ci
@@ -61,7 +61,7 @@ jobs:
6161
timeout-minutes: 5
6262
steps:
6363
- name: "Checkout code"
64-
uses: actions/checkout@v5
64+
uses: actions/checkout@v5.0.0
6565
- name: "Repo setup"
6666
run: |
6767
npm ci
@@ -90,7 +90,7 @@ jobs:
9090
timeout-minutes: 5
9191
steps:
9292
- name: "Checkout code"
93-
uses: actions/checkout@v5
93+
uses: actions/checkout@v5.0.0
9494
- name: "Repo setup"
9595
run: |
9696
npm ci
@@ -106,7 +106,7 @@ jobs:
106106
timeout-minutes: 5
107107
steps:
108108
- name: "Checkout code"
109-
uses: actions/checkout@v5
109+
uses: actions/checkout@v5.0.0
110110
- name: "Repo setup"
111111
run: |
112112
npm ci
@@ -123,7 +123,7 @@ jobs:
123123
timeout-minutes: 5
124124
steps:
125125
- name: "Checkout code"
126-
uses: actions/checkout@v5
126+
uses: actions/checkout@v5.0.0
127127
- name: "Run test coverage check"
128128
run: |
129129
make test-coverage
@@ -140,7 +140,7 @@ jobs:
140140
timeout-minutes: 5
141141
steps:
142142
- name: "Checkout code"
143-
uses: actions/checkout@v5
143+
uses: actions/checkout@v5.0.0
144144
with:
145145
fetch-depth: 0 # Full history is needed to improving relevancy of reporting
146146
- name: "Download coverage report for SONAR"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
timeout-minutes: 3
1717
steps:
1818
- name: "Checkout code"
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v5.0.0
2020
- name: "Get normalized branch name"
2121
id: normalize_branch_name
2222
uses: ./.github/actions/normalize-branch-name

lambdas/authorizer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"@types/aws-lambda": "^8.10.148",
1515
"@types/jest": "^29.5.14",
1616
"@types/jsonwebtoken": "^9.0.9",
17-
"esbuild": "^0.25.8",
17+
"esbuild": "^0.25.9",
1818
"jest": "^29.7.0",
1919
"jest-mock-extended": "^3.0.7",
2020
"typescript": "^5.8.2"

lambdas/backend-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"@types/jsonwebtoken": "^9.0.9",
3030
"aws-sdk-client-mock": "^4.1.0",
3131
"aws-sdk-client-mock-jest": "^4.1.0",
32-
"esbuild": "^0.25.8",
32+
"esbuild": "^0.25.9",
3333
"jest": "^29.7.0",
3434
"jest-mock-extended": "^3.0.7",
3535
"nhs-notify-web-template-management-test-helper-utils": "^0.0.1",

0 commit comments

Comments
 (0)