Revert 9f4d174daac954aaa9e18ee9bb58c6d7a946ec9d #8148
This file contains 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
--- | |
# vi: ts=2 sw=2 et: | |
# | |
name: "CodeQL" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-24.04 | |
concurrency: | |
group: ${{ github.workflow }}-${{ matrix.language }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
actions: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: ['python'] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d | |
with: | |
languages: ${{ matrix.language }} | |
queries: +security-extended,security-and-quality | |
- name: Autobuild | |
uses: github/codeql-action/autobuild@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d |