Bump jidicula/clang-format-action from c14d7abd6da6ba0aeed48797a5784d9468cbb806 to bea9eaa8d410adcbb81b5a7a4d459b7bf4f83247 #439
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: | |
| pull_request: | |
| schedule: | |
| - cron: '0 5 * * 3' | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| security-events: write | |
| jobs: | |
| codeql: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: "registry.gitlab.com/offa/docker-images/gcc:15" | |
| name: "CodeQL" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@main | |
| - name: Install dependencies | |
| run: | | |
| script/ci_setup.sh | |
| add-apt-repository ppa:mhier/libboost-latest | |
| apt-get update | |
| apt-get install -y boost1.83 | |
| - name: CodeQL Initialization | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: cpp, actions | |
| queries: +security-and-quality | |
| build-mode: none | |
| - name: CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4 |