Skip to content

Commit d7719bd

Browse files
committed
[PRM-636] December 25 upgrades
1 parent 14f55b5 commit d7719bd

16 files changed

+23
-23
lines changed

.github/workflows/automated-deploy-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
environment: development
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v5
24+
uses: actions/checkout@v6
2525

2626
- name: Configure AWS Credentials
2727
uses: aws-actions/configure-aws-credentials@v5

.github/workflows/automated-pr-validator.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
pull-requests: write
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
with:
2222
fetch-depth: 0
2323

@@ -130,7 +130,7 @@ jobs:
130130
contents: read
131131
steps:
132132
- name: Checkout repository
133-
uses: actions/checkout@v5
133+
uses: actions/checkout@v6
134134

135135
- name: Set up Python 3.11
136136
uses: actions/setup-python@v6

.github/workflows/automated-sonarqube-cloud-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
with:
2222
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
2323

.github/workflows/base-cleanup-lambda-edge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
environment: ${{ inputs.environment }}
3232
steps:
3333
- name: Checkout
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535
with:
3636
repository: 'NHSDigital/national-document-repository-infrastructure'
3737
ref: ${{ inputs.git_ref }}

.github/workflows/base-cleanup-workspace.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
environment: ${{ inputs.environment }}
3232
steps:
3333
- name: Checkout
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535
with:
3636
repository: 'NHSDigital/national-document-repository-infrastructure'
3737
ref: ${{ inputs.git_ref }}

.github/workflows/cron-daily-health-check.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
needs: ['set_workspace']
2929
steps:
3030
- name: Checkout
31-
uses: actions/checkout@v5
31+
uses: actions/checkout@v6
3232
with:
3333
ref: main
3434

@@ -91,7 +91,7 @@ jobs:
9191
runs-on: ubuntu-latest
9292
steps:
9393
- name: Checkout
94-
uses: actions/checkout@v5
94+
uses: actions/checkout@v6
9595
with:
9696
repository: NHSDigital/national-document-repository
9797

@@ -139,15 +139,15 @@ jobs:
139139
CYPRESS_grepTags: 'regression'
140140

141141
- name: Upload Artifacts (Screenshots)
142-
uses: actions/upload-artifact@v4
142+
uses: actions/upload-artifact@v5
143143
if: failure()
144144
with:
145145
name: cypress-screenshots-chrome
146146
path: /home/runner/work/national-document-repository/national-document-repository/app/cypress/screenshots
147147
if-no-files-found: ignore
148148

149149
- name: Upload Artifacts (Videos)
150-
uses: actions/upload-artifact@v4
150+
uses: actions/upload-artifact@v5
151151
if: failure()
152152
with:
153153
name: cypress-videos-chrome

.github/workflows/cron-tear-down-sandbox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
environment: development
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
with:
2121
ref: main
2222

.github/workflows/cron-tear-down-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
sandbox-name: [ndr-test]
4242
steps:
4343
- name: Checkout
44-
uses: actions/checkout@v5
44+
uses: actions/checkout@v6
4545
with:
4646
ref: main
4747

.github/workflows/deploy-pre-prod.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
steps:
2727
- name: Checkout main
2828
if: ${{ github.event.inputs.branch_or_tag == 'main' }}
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
3030
with:
3131
ref: main
3232
fetch-depth: "0"
@@ -51,7 +51,7 @@ jobs:
5151
environment: pre-prod
5252
steps:
5353
- name: Checkout
54-
uses: actions/checkout@v5
54+
uses: actions/checkout@v6
5555
with:
5656
ref: ${{ needs.tag_main.outputs.version }}
5757
fetch-depth: "0"

.github/workflows/deploy-prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
environment: prod
2323
steps:
2424
- name: Checkout Tag
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626
with:
2727
ref: refs/tags/${{ github.event.inputs.git_tag}}
2828
fetch-depth: "0"

0 commit comments

Comments
 (0)