chore: staging 0.35.1rc5 — logging audit, docs, pytest CVE fix #147
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: | |
| push: | |
| branches: | |
| - "master" | |
| - "dev" | |
| pull_request: | |
| schedule: | |
| - cron: "0 6 * * 1" # Monday 6am UTC | |
| permissions: {} | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| analyse: | |
| name: CodeQL (${{ matrix.language }}) | |
| runs-on: ubuntu-latest | |
| permissions: | |
| security-events: write # upload CodeQL results to security tab | |
| contents: read | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: [python, actions] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Initialise CodeQL | |
| uses: github/codeql-action/init@820e3160e279568db735cee8ed8f8e77a6da7818 # v3.32.6 | |
| with: | |
| languages: ${{ matrix.language }} | |
| - name: Run analysis | |
| uses: github/codeql-action/analyze@820e3160e279568db735cee8ed8f8e77a6da7818 # v3.32.6 | |
| with: | |
| category: "/language:${{ matrix.language }}" |