Skip to content

Commit 7038c26

Browse files
[PRM-607] November 25 npm/action/pypdf upgrades (#889)
Co-authored-by: adamwhitingnhs <[email protected]>
1 parent 8ecc5a5 commit 7038c26

33 files changed

+1374
-1623
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919

2020
- name: Set up Python 3.11
2121
uses: actions/setup-python@v6

.github/workflows/automated-sbom-repo-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: SBOM Repo Scan
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
with:
2020
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
2121

.github/workflows/base-cypress-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424
with:
2525
repository: 'NHSDigital/national-document-repository'
2626
ref: ${{ github.event.inputs.build_branch }}
@@ -52,7 +52,7 @@ jobs:
5252
working-directory: ./app
5353

5454
- name: Save build folder
55-
uses: actions/upload-artifact@v4
55+
uses: actions/upload-artifact@v5
5656
with:
5757
name: build
5858
if-no-files-found: error

.github/workflows/base-cypress-smoketest.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ jobs:
3535
environment: ${{ inputs.environment }}
3636
steps:
3737
- name: Checkout
38-
uses: actions/checkout@v5
38+
uses: actions/checkout@v6
3939
with:
4040
repository: "NHSDigital/national-document-repository"
4141
ref: ${{ inputs.build_branch}}
4242

4343
- name: AWS Role
44-
uses: aws-actions/configure-aws-credentials@v4
44+
uses: aws-actions/configure-aws-credentials@v5
4545
with:
4646
role-to-assume: ${{ secrets.AWS_ASSUME_ROLE }}
4747
role-skip-session-tagging: true
@@ -70,13 +70,13 @@ jobs:
7070
CYPRESS_KEY: ${{ secrets.CYPRESS_KEY }}
7171
CYPRESS_OUTPUT_VIDEO: true
7272

73-
- uses: actions/upload-artifact@v4
73+
- uses: actions/upload-artifact@v5
7474
if: failure()
7575
with:
7676
name: cypress-screenshots
7777
path: /home/runner/work/national-document-repository/national-document-repository/app/cypress/screenshots
7878
if-no-files-found: ignore
79-
- uses: actions/upload-artifact@v4
79+
- uses: actions/upload-artifact@v5
8080
if: failure()
8181
with:
8282
name: cypress-videos
@@ -89,13 +89,13 @@ jobs:
8989
environment: ${{ inputs.environment }}
9090
steps:
9191
- name: Checkout
92-
uses: actions/checkout@v5
92+
uses: actions/checkout@v6
9393
with:
9494
repository: "NHSDigital/national-document-repository"
9595
ref: ${{ inputs.build_branch}}
9696

9797
- name: AWS Role
98-
uses: aws-actions/configure-aws-credentials@v4
98+
uses: aws-actions/configure-aws-credentials@v5
9999
with:
100100
role-to-assume: ${{ secrets.AWS_ASSUME_ROLE }}
101101
role-skip-session-tagging: true

.github/workflows/base-cypress-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ jobs:
3737
runs-on: ubuntu-latest
3838
steps:
3939
- name: Checkout
40-
uses: actions/checkout@v5
40+
uses: actions/checkout@v6
4141
with:
4242
repository: 'NHSDigital/national-document-repository'
4343
ref: ${{ inputs.build_branch }}
4444

4545
- name: Download the build folder
46-
uses: actions/download-artifact@v5
46+
uses: actions/download-artifact@v6
4747
with:
4848
name: build
4949
path: ./app/build
@@ -68,13 +68,13 @@ jobs:
6868
CYPRESS_BASE_URL: ${{ inputs.cypress_base_url }}
6969
CYPRESS_grepTags: 'regression'
7070

71-
- uses: actions/upload-artifact@v4
71+
- uses: actions/upload-artifact@v5
7272
if: failure()
7373
with:
7474
name: cypress-screenshots-${{ inputs.cypress_browser}}
7575
path: /home/runner/work/national-document-repository/national-document-repository/app/cypress/screenshots
7676
if-no-files-found: ignore
77-
- uses: actions/upload-artifact@v4
77+
- uses: actions/upload-artifact@v5
7878
if: failure()
7979
with:
8080
name: cypress-videos-${{ inputs.cypress_browser}}

.github/workflows/base-data-collection.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ jobs:
3030
working-directory: lambdas
3131

3232
steps:
33-
- uses: actions/checkout@v5
33+
- uses: actions/checkout@v6
3434
with:
3535
repository: 'NHSDigital/national-document-repository'
3636
ref: ${{ inputs.build_branch }}
3737
fetch-depth: '0'
3838

3939
- name: Configure AWS Credentials
40-
uses: aws-actions/configure-aws-credentials@v4
40+
uses: aws-actions/configure-aws-credentials@v5
4141
with:
4242
role-to-assume: ${{ secrets.AWS_ASSUME_ROLE }}
4343
role-skip-session-tagging: true

.github/workflows/base-deploy-ui.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ jobs:
3535
working-directory: app
3636

3737
steps:
38-
- uses: actions/checkout@v5
38+
- uses: actions/checkout@v6
3939
with:
4040
repository: 'NHSDigital/national-document-repository'
4141
ref: ${{ inputs.build_branch }}
4242
fetch-depth: '0'
4343

4444
- name: Configure AWS Credentials
45-
uses: aws-actions/configure-aws-credentials@v4
45+
uses: aws-actions/configure-aws-credentials@v5
4646
with:
4747
role-to-assume: ${{ secrets.AWS_ASSUME_ROLE }}
4848
role-skip-session-tagging: true

.github/workflows/base-e2e-backendtest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,21 +31,21 @@ 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"
3737
ref: ${{ inputs.build_branch }}
3838

3939
- name: AWS Role
40-
uses: aws-actions/configure-aws-credentials@v4
40+
uses: aws-actions/configure-aws-credentials@v5
4141
with:
4242
role-to-assume: ${{ secrets.AWS_ASSUME_ROLE }}
4343
role-skip-session-tagging: true
4444
mask-aws-account-id: true
4545
aws-region: ${{ vars.AWS_REGION }}
4646

4747
- name: Set up Python 3.11
48-
uses: actions/setup-python@v5
48+
uses: actions/setup-python@v6
4949
with:
5050
python-version: 3.11
5151

.github/workflows/base-e2e-fhir-backendtest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,21 +34,21 @@ jobs:
3434
sandbox: ${{ inputs.sandbox }}
3535
steps:
3636
- name: Checkout
37-
uses: actions/checkout@v5
37+
uses: actions/checkout@v6
3838
with:
3939
repository: "NHSDigital/national-document-repository"
4040
ref: ${{ inputs.build_branch }}
4141

4242
- name: AWS Role
43-
uses: aws-actions/configure-aws-credentials@v4
43+
uses: aws-actions/configure-aws-credentials@v5
4444
with:
4545
role-to-assume: ${{ secrets.AWS_ASSUME_ROLE }}
4646
role-skip-session-tagging: true
4747
mask-aws-account-id: true
4848
aws-region: ${{ vars.AWS_REGION }}
4949

5050
- name: Set up Python 3.11
51-
uses: actions/setup-python@v5
51+
uses: actions/setup-python@v6
5252
with:
5353
python-version: 3.11
5454

.github/workflows/base-lambda-layer-reusable-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ jobs:
4545
echo Lambda Layer Name: ${{ inputs.lambda_layer_name }}
4646
4747
- name: Checkout
48-
uses: actions/checkout@v5
48+
uses: actions/checkout@v6
4949
with:
5050
repository: 'NHSDigital/national-document-repository'
5151
ref: ${{ inputs.build_branch }}
5252
fetch-depth: '0'
5353

5454
- name: Set up Python ${{ inputs.python_version }}
55-
uses: actions/setup-python@v5
55+
uses: actions/setup-python@v6
5656
with:
5757
python-version: ${{ inputs.python_version }}
5858

@@ -61,7 +61,7 @@ jobs:
6161
make github_env
6262
6363
- name: Configure AWS Credentials for ${{ vars.AWS_REGION }}
64-
uses: aws-actions/configure-aws-credentials@v4
64+
uses: aws-actions/configure-aws-credentials@v5
6565
with:
6666
role-to-assume: ${{ secrets.AWS_ASSUME_ROLE }}
6767
role-skip-session-tagging: true

0 commit comments

Comments
 (0)