Revert "Pin clang to version 17 in sanitizer CI jobs (#3546)" #212
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: | |
| paths-ignore: | |
| - '**/*.md' | |
| - '**/00-RELEASENOTES' | |
| - '**/COPYING' | |
| pull_request: | |
| paths-ignore: | |
| - '**/*.md' | |
| - '**/00-RELEASENOTES' | |
| - '**/COPYING' | |
| schedule: | |
| # run weekly new vulnerability was added to the database | |
| - cron: '0 3 * * 0' | |
| concurrency: | |
| group: codeql-${{ github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| analyze: | |
| name: Analyze | |
| runs-on: ubuntu-latest | |
| if: github.event_name != 'schedule' || github.repository == 'valkey-io/valkey' | |
| permissions: | |
| security-events: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: ['cpp'] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@c793b717bc78562f491db7b0e93a3a178b099162 # v4.32.5 | |
| with: | |
| languages: ${{ matrix.language }} | |
| - name: Autobuild | |
| uses: github/codeql-action/autobuild@c793b717bc78562f491db7b0e93a3a178b099162 # v4.32.5 | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@c793b717bc78562f491db7b0e93a3a178b099162 # v4.32.5 |