Bump offa/conan-action from e9d361b93acd968d992b3bbb15b02b0beefb6b37 to c53f2e20ee76d70775862fdc7d52f7f53e60062d #611
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: 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 |