| --- |
| name: CodeQL |
| |
| on: |
| schedule: |
| - cron: "41 3 * * 6" |
| workflow_dispatch: |
| |
| concurrency: |
| group: ${{ github.workflow }} |
| cancel-in-progress: true |
| |
| permissions: {} |
| |
| jobs: |
| analyze: |
| name: Analyze |
| runs-on: ubuntu-latest |
| permissions: |
| security-events: write # necessary according to docs |
| |
| strategy: |
| fail-fast: false |
| matrix: |
| language: [python] |
| |
| steps: |
| - name: Checkout repository |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 |
| with: |
| persist-credentials: false |
| |
| - name: Initialize CodeQL |
| uses: github/codeql-action/init@f205ea1c3313d32999d8d6a48b4f6530d4437b38 # v4.37.4 |
| with: |
| languages: ${{ matrix.language }} |
| |
| - name: Autobuild |
| uses: github/codeql-action/autobuild@f205ea1c3313d32999d8d6a48b4f6530d4437b38 # v4.37.4 |
| |
| - name: Perform CodeQL Analysis |
| uses: github/codeql-action/analyze@f205ea1c3313d32999d8d6a48b4f6530d4437b38 # v4.37.4 |