Bump jidicula/clang-format-action from 2255e8e23d2da4503bb0a9fe4facf80f978e8a72 to bea9eaa8d410adcbb81b5a7a4d459b7bf4f83247 #310
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: Setup | |
| run: script/ci_setup.sh | |
| - name: CodeQL Initialization | |
| uses: github/codeql-action/init@main | |
| with: | |
| languages: cpp, actions | |
| queries: +security-and-quality | |
| build-mode: none | |
| - name: CodeQL Analysis | |
| uses: github/codeql-action/analyze@main |