Bump github/codeql-action from 1a7989f3955e0c69f0e0ccc14aee54a387a0fd31 to 83923549f688e42b34d0b90ee94725f7c30532fc #51
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: CodeQL | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| actions: read | |
| checks: write | |
| contents: read | |
| security-events: write | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| analyze: | |
| name: Analyze | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| id: checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Initialize CodeQL | |
| id: initialize | |
| uses: github/codeql-action/init@83923549f688e42b34d0b90ee94725f7c30532fc # v3.28.9 | |
| with: | |
| queries: security-extended | |
| languages: TypeScript | |
| source-root: src | |
| - name: Autobuild | |
| id: autobuild | |
| uses: github/codeql-action/autobuild@83923549f688e42b34d0b90ee94725f7c30532fc # v3.28.9 | |
| - name: Perform CodeQL Analysis | |
| id: analyze | |
| uses: github/codeql-action/analyze@83923549f688e42b34d0b90ee94725f7c30532fc # v3.28.9 |