diff --git a/.github/workflows/cicd-4-pr-title-check.yaml b/.github/workflows/cicd-4-pr-title-check.yaml index 41b29d916..74f6ba070 100644 --- a/.github/workflows/cicd-4-pr-title-check.yaml +++ b/.github/workflows/cicd-4-pr-title-check.yaml @@ -15,6 +15,6 @@ jobs: runs-on: ubuntu-latest steps: - name: "Check PR title format" - uses: NHSDigital/nhs-notify-shared-modules/.github/actions/check-pr-title-format@4.0.5 + uses: NHSDigital/nhs-notify-shared-modules/.github/actions/check-pr-title-format@4.0.7 with: title: ${{ github.event.pull_request.title }} diff --git a/.github/workflows/manual-combine-dependabot-prs.yaml b/.github/workflows/manual-combine-dependabot-prs.yaml index 9183ff624..e500b0c5b 100644 --- a/.github/workflows/manual-combine-dependabot-prs.yaml +++ b/.github/workflows/manual-combine-dependabot-prs.yaml @@ -15,7 +15,7 @@ jobs: steps: - name: combine-prs id: combine-prs - uses: NHSDigital/nhs-notify-shared-modules/.github/actions/combine-dependabot-prs@4.0.6 + uses: NHSDigital/nhs-notify-shared-modules/.github/actions/combine-dependabot-prs@4.0.7 with: ci_required: false labels: dependencies diff --git a/.github/workflows/scheduled-repository-template-sync.yaml b/.github/workflows/scheduled-repository-template-sync.yaml index 01f240090..5891b62fc 100644 --- a/.github/workflows/scheduled-repository-template-sync.yaml +++ b/.github/workflows/scheduled-repository-template-sync.yaml @@ -18,7 +18,7 @@ jobs: - name: Check out the repository uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - name: Sync repository template - uses: NHSDigital/nhs-notify-shared-modules/.github/actions/sync-template-repo@4.0.5 + uses: NHSDigital/nhs-notify-shared-modules/.github/actions/sync-template-repo@4.0.7 with: github_token: ${{ github.token }} diff --git a/.github/workflows/stage-1-commit.yaml b/.github/workflows/stage-1-commit.yaml index 45fda48eb..d74e1516a 100644 --- a/.github/workflows/stage-1-commit.yaml +++ b/.github/workflows/stage-1-commit.yaml @@ -51,7 +51,7 @@ jobs: with: fetch-depth: 0 # Full history is needed to scan all commits - name: "Scan secrets" - uses: NHSDigital/nhs-notify-shared-modules/.github/actions/scan-secrets@4.0.5 + uses: NHSDigital/nhs-notify-shared-modules/.github/actions/scan-secrets@4.0.7 check-file-format: name: "Check file format" runs-on: ubuntu-latest @@ -62,7 +62,7 @@ jobs: with: fetch-depth: 0 # Full history is needed to compare branches - name: "Check file format" - uses: NHSDigital/nhs-notify-shared-modules/.github/actions/check-file-format@4.0.5 + uses: NHSDigital/nhs-notify-shared-modules/.github/actions/check-file-format@4.0.7 check-markdown-format: name: "Check Markdown format" runs-on: ubuntu-latest @@ -73,7 +73,7 @@ jobs: with: fetch-depth: 0 # Full history is needed to compare branches - name: "Check Markdown format" - uses: NHSDigital/nhs-notify-shared-modules/.github/actions/check-markdown-format@4.0.5 + uses: NHSDigital/nhs-notify-shared-modules/.github/actions/check-markdown-format@4.0.7 terraform-docs: name: "Run terraform-docs" runs-on: ubuntu-latest @@ -108,7 +108,7 @@ jobs: with: fetch-depth: 0 # Full history is needed to compare branches - name: "Check English usage" - uses: NHSDigital/nhs-notify-shared-modules/.github/actions/check-english-usage@4.0.5 + uses: NHSDigital/nhs-notify-shared-modules/.github/actions/check-english-usage@4.0.7 check-todo-usage: name: "Check TODO usage" runs-on: ubuntu-latest @@ -119,7 +119,7 @@ jobs: with: fetch-depth: 0 # Full history is needed to compare branches - name: "Check TODO usage" - uses: NHSDigital/nhs-notify-shared-modules/.github/actions/check-todo-usage@4.0.5 + uses: NHSDigital/nhs-notify-shared-modules/.github/actions/check-todo-usage@4.0.7 detect-terraform-changes: name: "Detect Terraform Changes" runs-on: ubuntu-latest @@ -154,7 +154,7 @@ jobs: - name: "Setup ASDF" uses: asdf-vm/actions/setup@b7bcd026f18772e44fe1026d729e1611cc435d47 # v4.0.1 - name: "Lint Terraform" - uses: NHSDigital/nhs-notify-shared-modules/.github/actions/lint-terraform@4.0.5 + uses: NHSDigital/nhs-notify-shared-modules/.github/actions/lint-terraform@4.0.7 # TODO - Re-visit Trivy usage https://nhsd-jira.digital.nhs.uk/browse/CCM-15549 # trivy-iac: # name: "Trivy IaC Scan" @@ -200,7 +200,7 @@ jobs: - name: "Checkout code" uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - name: "Count lines of code" - uses: NHSDigital/nhs-notify-shared-modules/.github/actions/create-lines-of-code-report@4.0.5 + uses: NHSDigital/nhs-notify-shared-modules/.github/actions/create-lines-of-code-report@4.0.7 with: build_datetime: "${{ inputs.build_datetime }}" build_timestamp: "${{ inputs.build_timestamp }}" @@ -219,7 +219,7 @@ jobs: - name: "Checkout code" uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - name: "Scan dependencies" - uses: NHSDigital/nhs-notify-shared-modules/.github/actions/scan-dependencies@4.0.5 + uses: NHSDigital/nhs-notify-shared-modules/.github/actions/scan-dependencies@4.0.7 with: build_datetime: "${{ inputs.build_datetime }}" build_timestamp: "${{ inputs.build_timestamp }}" diff --git a/.github/workflows/stage-2-test.yaml b/.github/workflows/stage-2-test.yaml index c4f68a19a..9df0a3707 100644 --- a/.github/workflows/stage-2-test.yaml +++ b/.github/workflows/stage-2-test.yaml @@ -245,7 +245,7 @@ jobs: with: name: code-coverage-report - name: "Perform static analysis" - uses: NHSDigital/nhs-notify-shared-modules/.github/actions/perform-static-analysis@4.0.5 + uses: NHSDigital/nhs-notify-shared-modules/.github/actions/perform-static-analysis@4.0.7 with: sonar_organisation_key: "${{ vars.SONAR_ORGANISATION_KEY }}" sonar_project_key: "${{ vars.SONAR_PROJECT_KEY }}"