PYTHON-5930 Fix SSL_CERT_FILE/SSL_CERT_DIR trust store handling #6009
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", "v*"] | |
| tags: ['*'] | |
| pull_request: | |
| workflow_call: | |
| inputs: | |
| ref: | |
| required: true | |
| type: string | |
| schedule: | |
| - cron: '17 10 * * 2' | |
| concurrency: | |
| group: codeql-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| analyze: | |
| name: Analyze (${{ matrix.language }}) | |
| runs-on: "ubuntu-latest" | |
| timeout-minutes: 360 | |
| permissions: | |
| security-events: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - language: c-cpp | |
| build-mode: manual | |
| manual-build-command: pip install -e . | |
| - language: python | |
| build-mode: none | |
| - language: actions | |
| build-mode: none | |
| steps: | |
| - uses: mongodb-labs/drivers-github-tools/codeql@95f9ce909bf0e44707fffdb92c18ed86e74aa2fd # v3 | |
| with: | |
| language: ${{ matrix.language }} | |
| build-mode: ${{ matrix.build-mode }} | |
| manual-build-command: ${{ matrix.manual-build-command }} | |
| ref: ${{ inputs.ref }} | |
| config: | | |
| paths-ignore: | |
| - 'doc/**' | |
| - 'tools/**' | |
| - 'test/**' |