Bump github/codeql-action from 83923549f688e42b34d0b90ee94725f7c30532fc to b2e6519679e446e7bb7c3466d70f13a6b5461fcd #90
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@b2e6519679e446e7bb7c3466d70f13a6b5461fcd # v3.28.9 | |
| with: | |
| queries: security-extended | |
| languages: TypeScript | |
| source-root: src | |
| - name: Autobuild | |
| id: autobuild | |
| uses: github/codeql-action/autobuild@b2e6519679e446e7bb7c3466d70f13a6b5461fcd # v3.28.9 | |
| - name: Perform CodeQL Analysis | |
| id: analyze | |
| uses: github/codeql-action/analyze@b2e6519679e446e7bb7c3466d70f13a6b5461fcd # v3.28.9 |