chore(deps)(deps): bump the actions group across 1 directory with 4 updates #298
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: CodeQL | |
| # Static analysis (SAST) for JS/TS. Clears OSSF Scorecard SAST alert (#85). | |
| # NOTE: GitHub Actions minutes are out and not being restored, so this will not | |
| # run on hosted runners today — it is correctly configured for when a runner | |
| # exists (HLCE-195/HLCE-197). Run manually via the "Run workflow" button if a | |
| # self-hosted runner is added. | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| schedule: | |
| - cron: '0 7 * * 1' # weekly, Mondays 07:00 UTC | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| analyze: | |
| name: Analyze (javascript-typescript) | |
| runs-on: ubuntu-latest | |
| permissions: | |
| security-events: write | |
| contents: read | |
| actions: read | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@7188fc363630916deb702c7fdcf4e481b751f97a # v4 | |
| with: | |
| languages: javascript-typescript | |
| build-mode: none | |
| queries: security-and-quality | |
| config-file: ./.github/codeql/codeql-config.yml | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@7188fc363630916deb702c7fdcf4e481b751f97a # v4 | |
| with: | |
| category: "/language:javascript-typescript" |