Skip to content

Commit f1a5ffa

Browse files
authored
Merge branch 'main' into feature/CCM-12649
2 parents 16f802c + 93ce817 commit f1a5ffa

File tree

86 files changed

+17009
-9934
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+17009
-9934
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
pr_number: ${{ steps.pr_exists.outputs.pr_number }}
3131
steps:
3232
- name: "Checkout code"
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v5
3434
- name: "Set CI/CD variables"
3535
id: variables
3636
run: |

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
# tag: ${{ steps.variables.outputs.tag }}
3838
steps:
3939
- name: "Checkout code"
40-
uses: actions/checkout@v4
40+
uses: actions/checkout@v5
4141
- name: "Set CI/CD variables"
4242
id: variables
4343
run: |
@@ -70,7 +70,7 @@ jobs:
7070
needs: metadata
7171
steps:
7272
- name: "Checkout code"
73-
uses: actions/checkout@v4
73+
uses: actions/checkout@v5
7474

7575
- name: "Get version"
7676
id: get-asset-version
@@ -103,7 +103,7 @@ jobs:
103103
run: |
104104
gh release download ${{steps.get-asset-version.outputs.release_version}} -p jekyll-docs-*.tar --output artifact.tar
105105
106-
- uses: actions/upload-artifact@v4
106+
- uses: actions/upload-artifact@v5
107107
with:
108108
name: jekyll-docs-${{steps.get-asset-version.outputs.release_version}}
109109
path: artifact.tar

.github/workflows/manual-proxy-environment-deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Checkout
3131
uses: actions/checkout@v4
3232

33-
- uses: actions/setup-node@v4
33+
- uses: actions/setup-node@v6
3434
with:
3535
node-version: 24
3636

.github/workflows/pr_closed.yaml

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

4949
steps:
5050
- name: Checkout repository
51-
uses: actions/checkout@v4
51+
uses: actions/checkout@v5
5252

5353
- name: Updating Main Environment
5454
env:

.github/workflows/pr_create_dynamic_env.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919

2020
steps:
21-
- uses: actions/checkout@v5.0.0
21+
- uses: actions/checkout@v5
2222
- name: Trigger dynamic environment creation
2323
env:
2424
APP_CLIENT_ID: ${{ secrets.APP_CLIENT_ID }}

.github/workflows/pr_destroy_dynamic_env.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v5.0.0
17+
- uses: actions/checkout@v5
1818

1919
- name: Trigger dynamic environment destruction
2020
env:

.github/workflows/release_created.yaml

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

2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828

2929
- name: Deploy Nonprod Environment
3030
env:

.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: 3 additions & 3 deletions
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@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4.2.2
3636
with:
3737
persist-credentials: false
3838

@@ -59,7 +59,7 @@ jobs:
5959
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
6060
# format to the repository Actions tab.
6161
- name: "Upload artifact"
62-
uses: actions/upload-artifact@v4
62+
uses: actions/upload-artifact@v5
6363
with:
6464
name: SARIF file
6565
path: results.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@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2
71+
uses: github/codeql-action/upload-sarif@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v4.31.0
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:

0 commit comments

Comments
 (0)