This repository was archived by the owner on Feb 9, 2026. It is now read-only.
BAU: Bump @aws-sdk/client-cloudformation from 3.405.0 to 3.787.0 #778
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Scan repository | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| schedule: | |
| # Every Monday at 9am | |
| - cron: "0 9 * * 1" | |
| concurrency: | |
| group: scan-repo-${{ github.head_ref || github.ref_name }} | |
| cancel-in-progress: true | |
| permissions: read-all | |
| jobs: | |
| unit-tests: | |
| name: Test coverage | |
| uses: ./.github/workflows/run-unit-tests.yml | |
| with: | |
| coverage-report: true | |
| sonarcloud: | |
| name: SonarCloud | |
| needs: unit-tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Run SonarCloud scan | |
| uses: govuk-one-login/github-actions/code-quality/sonarcloud@d201191485b645ec856a34e5ca48636cf97b2574 | |
| with: | |
| coverage-artifact: ${{ needs.unit-tests.outputs.coverage-artifact }} | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| sonar-token: ${{ secrets.SONAR_TOKEN }} | |
| codeql: | |
| name: CodeQL | |
| runs-on: ubuntu-latest | |
| permissions: | |
| security-events: write | |
| steps: | |
| - name: Run CodeQL scan | |
| uses: govuk-one-login/github-actions/code-quality/codeql@d201191485b645ec856a34e5ca48636cf97b2574 | |
| with: | |
| languages: javascript-typescript |