chore(github-deps): bump github/codeql-action/init from 4.36.3 to 4.37.3 #2238
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 Workflow Security Scan" | |
| on: | |
| pull_request: | |
| # PRs are checked for new issues | |
| branches: [ "main" ] | |
| paths: | |
| - '.github/**' | |
| - 'src/**' | |
| jobs: | |
| analyze: | |
| name: Analyze | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: [ 'actions', 'python' ] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4 | |
| # Initializes CodeQL tools for scanning. | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v3 | |
| with: | |
| languages: ${{ matrix.language }} | |
| # "security-extended" is recommended for higher severity coverage - not necessary can be removed to speed up | |
| queries: security-extended | |
| # Scans the code and uploads results to GitHub Security tab. | |
| # The "Fail on High" logic is handled by Branch Protection Rules in Settings | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@54f647b7e1bb85c95cddabcd46b0c578ec92bc1a # v3 | |
| with: | |
| category: "/language:${{ matrix.language }}" |