Bump zizmorcore/zizmor-action from da5ac40c5419dcf7f21630fb2f95e725ae… #300
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"] | |
| tags: ['*'] | |
| pull_request: | |
| workflow_call: | |
| inputs: | |
| ref: | |
| required: true | |
| type: string | |
| schedule: | |
| - cron: '17 10 * * 2' | |
| jobs: | |
| analyze: | |
| name: Analyze (${{ matrix.language }}) | |
| runs-on: "windows-latest" | |
| timeout-minutes: 360 | |
| permissions: | |
| # required for all workflows | |
| security-events: write | |
| # required to fetch internal or private CodeQL packs | |
| packages: read | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| # Note: we do NOT include python because this is a pure C extension.exclude: | |
| # See PYTHON-5633. | |
| - language: c-cpp | |
| build-mode: manual | |
| - language: actions | |
| build-mode: none | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| with: | |
| ref: ${{ inputs.ref }} | |
| persist-credentials: false | |
| - uses: actions/setup-python@v6 | |
| # Initializes the CodeQL tools for scanning. | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@0499de31b99561a6d14a36a5f662c2a54f91beee # v4 | |
| with: | |
| languages: ${{ matrix.language }} | |
| build-mode: ${{ matrix.build-mode }} | |
| # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs | |
| queries: security-extended | |
| config: | | |
| paths-ignore: | |
| - 'doc/**' | |
| - 'scripts/**' | |
| - 'test/**' | |
| - if: matrix.build-mode == 'manual' | |
| run: | | |
| pip install -e . | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@0499de31b99561a6d14a36a5f662c2a54f91beee # v4 | |
| with: | |
| category: "/language:${{matrix.language}}" |