Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/cicd-1-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
does_pull_request_exist: ${{ steps.pr_exists.outputs.does_pull_request_exist }}
steps:
- name: "Checkout code"
uses: actions/checkout@v5
uses: actions/checkout@v5.0.0
- name: "Set CI/CD variables"
id: variables
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dispatch_internal_repo_workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v5.0.0

- name: Trigger nhs-notify-internal workflow
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_internal_repo_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
contents: read

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v5.0.0

- name: Trigger nhs-notify-internal static environment workflow deployment
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/scheduled-repository-template-sync.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:

steps:
- name: Check out the repository
uses: actions/checkout@v5
uses: actions/checkout@v5.0.0

- name: Check out external repository
uses: actions/checkout@v5
uses: actions/checkout@v5.0.0
with:
repository: NHSDigital/nhs-notify-repository-template
path: nhs-notify-repository-template
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

steps:
- name: "Checkout code"
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false

Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/stage-1-commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
timeout-minutes: 5
steps:
- name: "Checkout code"
uses: actions/checkout@v5
uses: actions/checkout@v5.0.0
with:
fetch-depth: 0 # Full history is needed to scan all commits
- name: "Scan secrets"
Expand All @@ -50,7 +50,7 @@ jobs:
timeout-minutes: 5
steps:
- name: "Checkout code"
uses: actions/checkout@v5
uses: actions/checkout@v5.0.0
with:
fetch-depth: 0 # Full history is needed to compare branches
- name: "Check file format"
Expand All @@ -61,7 +61,7 @@ jobs:
timeout-minutes: 5
steps:
- name: "Checkout code"
uses: actions/checkout@v5
uses: actions/checkout@v5.0.0
with:
fetch-depth: 0 # Full history is needed to compare branches
- name: "Check Markdown format"
Expand All @@ -75,7 +75,7 @@ jobs:
contents: write
steps:
- name: "Checkout code"
uses: actions/checkout@v5
uses: actions/checkout@v5.0.0
with:
fetch-depth: 0 # Full history is needed to compare branches
- name: "Check to see if Terraform Docs are up-to-date"
Expand All @@ -96,7 +96,7 @@ jobs:
timeout-minutes: 5
steps:
- name: "Checkout code"
uses: actions/checkout@v5
uses: actions/checkout@v5.0.0
with:
fetch-depth: 0 # Full history is needed to compare branches
- name: "Check English usage"
Expand All @@ -107,7 +107,7 @@ jobs:
timeout-minutes: 5
steps:
- name: "Checkout code"
uses: actions/checkout@v5
uses: actions/checkout@v5.0.0
with:
fetch-depth: 0 # Full history is needed to compare branches
- name: "Check TODO usage"
Expand All @@ -119,7 +119,7 @@ jobs:
terraform_changed: ${{ steps.check.outputs.terraform_changed }}
steps:
- name: "Checkout code"
uses: actions/checkout@v5
uses: actions/checkout@v5.0.0

- name: "Check for Terraform changes"
id: check
Expand All @@ -143,7 +143,7 @@ jobs:
if: needs.detect-terraform-changes.outputs.terraform_changed == 'true'
steps:
- name: "Checkout code"
uses: actions/checkout@v5
uses: actions/checkout@v5.0.0
- name: "Lint Terraform"
uses: ./.github/actions/lint-terraform
trivy:
Expand All @@ -154,7 +154,7 @@ jobs:
if: needs.detect-terraform-changes.outputs.terraform_changed == 'true'
steps:
- name: "Checkout code"
uses: actions/checkout@v5
uses: actions/checkout@v5.0.0
- name: "Setup ASDF"
uses: asdf-vm/actions/setup@v4
- name: "Perform Setup"
Expand All @@ -170,7 +170,7 @@ jobs:
timeout-minutes: 5
steps:
- name: "Checkout code"
uses: actions/checkout@v5
uses: actions/checkout@v5.0.0
- name: "Count lines of code"
uses: ./.github/actions/create-lines-of-code-report
with:
Expand All @@ -189,7 +189,7 @@ jobs:
timeout-minutes: 5
steps:
- name: "Checkout code"
uses: actions/checkout@v5
uses: actions/checkout@v5.0.0
- name: "Scan dependencies"
uses: ./.github/actions/scan-dependencies
with:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/stage-2-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
timeout-minutes: 5
steps:
- name: "Checkout code"
uses: actions/checkout@v5
uses: actions/checkout@v5.0.0
- name: "Repo setup"
run: |
npm ci
Expand All @@ -61,7 +61,7 @@ jobs:
timeout-minutes: 5
steps:
- name: "Checkout code"
uses: actions/checkout@v5
uses: actions/checkout@v5.0.0
- name: "Repo setup"
run: |
npm ci
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
timeout-minutes: 5
steps:
- name: "Checkout code"
uses: actions/checkout@v5
uses: actions/checkout@v5.0.0
- name: "Repo setup"
run: |
npm ci
Expand All @@ -106,7 +106,7 @@ jobs:
timeout-minutes: 5
steps:
- name: "Checkout code"
uses: actions/checkout@v5
uses: actions/checkout@v5.0.0
- name: "Repo setup"
run: |
npm ci
Expand All @@ -123,7 +123,7 @@ jobs:
timeout-minutes: 5
steps:
- name: "Checkout code"
uses: actions/checkout@v5
uses: actions/checkout@v5.0.0
- name: "Run test coverage check"
run: |
make test-coverage
Expand All @@ -140,7 +140,7 @@ jobs:
timeout-minutes: 5
steps:
- name: "Checkout code"
uses: actions/checkout@v5
uses: actions/checkout@v5.0.0
with:
fetch-depth: 0 # Full history is needed to improving relevancy of reporting
- name: "Download coverage report for SONAR"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stage-4-acceptance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
timeout-minutes: 3
steps:
- name: "Checkout code"
uses: actions/checkout@v5
uses: actions/checkout@v5.0.0
- name: "Get normalized branch name"
id: normalize_branch_name
uses: ./.github/actions/normalize-branch-name
Expand Down
Loading