Merge pull request #105 from marcransome/openssf-scorecard-remediations #216
This file contains 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 analysis | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
schedule: | |
- cron: '00 18 * * 1' | |
workflow_dispatch: | |
permissions: read-all | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: macos-latest | |
permissions: | |
security-events: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Install dependencies | |
run: brew install popt | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@8a470fddafa5cbb6266ee11b37ef4d8aae19c571 # v3.24.6 | |
with: | |
languages: cpp | |
queries: security-and-quality | |
source-root: src | |
- name: Build sources | |
run: | | |
cmake -S . -B build | |
cmake --build build | |
- name: Perform CodeQL analysis | |
uses: github/codeql-action/analyze@8a470fddafa5cbb6266ee11b37ef4d8aae19c571 # v3.24.6 |