Bump jidicula/clang-format-action from fb1a7a56a9341d16f79d610e65f81963ae33871d to f70b135d76f0009c9c423db243ffcda6fb3694d5 #419
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_install_dependencies.sh | |
| - 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 |