Bump jidicula/clang-format-action from 8cf0fe91805dd97bc574a1423c447b35e75b77fa to 3a18028048f01a66653b4e3bf8d968d2e7e2cb8b #588
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 | |
| - uses: offa/conan-action@b8e0a7119ebc3655d47130251e75c206aba96145 | |
| - name: CodeQL Initialization | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: cpp, actions | |
| queries: +security-and-quality | |
| - name: Build | |
| run: script/ci_build.sh -codeql | |
| - name: CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4 |