Skip to content

Commit fc94cb9

Browse files
committed
Merge branch 'main' into feature/CCM-11026_publish-event-schemas
2 parents 75c87b9 + 8d35ce3 commit fc94cb9

File tree

10 files changed

+28
-28
lines changed

10 files changed

+28
-28
lines changed

.github/actions/acceptance-tests/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ runs:
2424

2525
steps:
2626
- name: Fetch terraform output
27-
uses: actions/download-artifact@v4
27+
uses: actions/download-artifact@v5
2828
with:
2929
name: terraform-output-${{ inputs.targetComponent }}
3030
- name: "Repo setup"

.github/actions/post-deployment/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ runs:
2121

2222
steps:
2323
- name: Fetch terraform output
24-
uses: actions/download-artifact@v4
24+
uses: actions/download-artifact@v5
2525
with:
2626
name: terraform-output-${{ inputs.targetComponent }}
2727

.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@v4
27+
uses: actions/checkout@v5
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@v4
56+
- uses: actions/checkout@v5
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@v4
45+
- uses: actions/checkout@v5
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@v4
19+
uses: actions/checkout@v5
2020

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

.github/workflows/scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
persist-credentials: false
3838

3939
- name: "Run analysis"
40-
uses: ossf/scorecard-action@f49aabe0b5af0936a0987cfb85d86b75731b0186 # v2.4.1
40+
uses: ossf/scorecard-action@05b42c624433fc40578a4040d5cf5e36ddca8cde # v2.4.2
4141
with:
4242
results_file: results.sarif
4343
results_format: sarif
@@ -68,6 +68,6 @@ jobs:
6868
# Upload the results to GitHub's code scanning dashboard (optional).
6969
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
7070
- name: "Upload to code-scanning"
71-
uses: github/codeql-action/upload-sarif@fca7ace96b7d713c7035871441bd52efbe39e27e # v3.28.19
71+
uses: github/codeql-action/upload-sarif@df559355d593797519d70b90fc8edd5db049e7a2 # v3.29.9
7272
with:
7373
sarif_file: results.sarif

.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@v4
42+
uses: actions/checkout@v5
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@v4
53+
uses: actions/checkout@v5
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@v4
64+
uses: actions/checkout@v5
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@v4
78+
uses: actions/checkout@v5
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@v4
99+
uses: actions/checkout@v5
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@v4
110+
uses: actions/checkout@v5
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@v4
122+
uses: actions/checkout@v5
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@v4
146+
uses: actions/checkout@v5
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@v4
157+
uses: actions/checkout@v5
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@v4
173+
uses: actions/checkout@v5
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@v4
192+
uses: actions/checkout@v5
193193
- name: "Scan dependencies"
194194
uses: ./.github/actions/scan-dependencies
195195
with:

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

Lines changed: 7 additions & 7 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@v4
50+
uses: actions/checkout@v5
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@v4
64+
uses: actions/checkout@v5
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@v4
93+
uses: actions/checkout@v5
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@v4
109+
uses: actions/checkout@v5
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@v4
126+
uses: actions/checkout@v5
127127
- name: "Run test coverage check"
128128
run: |
129129
make test-coverage
@@ -140,11 +140,11 @@ jobs:
140140
timeout-minutes: 5
141141
steps:
142142
- name: "Checkout code"
143-
uses: actions/checkout@v4
143+
uses: actions/checkout@v5
144144
with:
145145
fetch-depth: 0 # Full history is needed to improving relevancy of reporting
146146
- name: "Download coverage report for SONAR"
147-
uses: actions/download-artifact@v4
147+
uses: actions/download-artifact@v5
148148
with:
149149
name: code-coverage-report
150150
- name: "Perform static analysis"

.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@v4
19+
uses: actions/checkout@v5
2020
- name: "Get normalized branch name"
2121
id: normalize_branch_name
2222
uses: ./.github/actions/normalize-branch-name

0 commit comments

Comments
 (0)