Bump thirdparty/sentry from e8c7f15 to d97e523
#364
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: | |
| schedule: | |
| - cron: '21 9 * * 4' | |
| push: | |
| branches: | |
| - 'master' | |
| pull_request: | |
| permissions: | |
| contents: read | |
| env: | |
| CCACHE_DIR: ${{ github.workspace }}/.ccache | |
| jobs: | |
| analyze: | |
| name: Analyze | |
| runs-on: ubuntu-latest | |
| container: egecetinn/ubuntu2204 | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: [ 'cpp' ] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| submodules: recursive | |
| - name: Restore ccache | |
| id: ccache-restore | |
| uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 | |
| with: | |
| path: | | |
| ${{ env.CCACHE_DIR }} | |
| key: codeql-ccache-${{ github.run_id }} | |
| restore-keys: | | |
| codeql-ccache | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.13 | |
| with: | |
| languages: ${{ matrix.language }} | |
| - name: Configure | |
| run: cmake -S . -B build | |
| - name: Build | |
| run: cmake --build build --parallel | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.13 | |
| - name: Save ccache | |
| uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 | |
| with: | |
| path: ${{ env.CCACHE_DIR }} | |
| key: ${{ steps.ccache-restore.outputs.cache-primary-key }} |