Bump JamesIves/github-pages-deploy-action from 4.4.3 to 4.5.0 #120
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" | |
on: | |
push: | |
pull_request: | |
release: | |
types: [published] | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [cpp] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Packages | |
run: | | |
sudo apt-get update | |
sudo apt-get install --yes python3-pip ca-certificates ninja-build | |
- name: After Prepare | |
run: | | |
pip3 install --user --upgrade conan | |
conan profile detect --force | |
ls ~/.local/bin | |
export PATH=$PATH:~/.local/bin && echo "PATH=$PATH" >> $GITHUB_ENV | |
conan install . --output-folder=build --build=missing --settings=build_type=Debug | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: ${{ matrix.language }} | |
queries: +security-and-quality | |
- name: build | |
run: | | |
cmake --preset ci-ninja-debug | |
cmake --build build | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 | |
with: | |
category: "/language:${{ matrix.language }}" |