Skip to content

Bump lukka/get-cmake from 3.28.3 to 3.29.0 #118

Bump lukka/get-cmake from 3.28.3 to 3.29.0

Bump lukka/get-cmake from 3.28.3 to 3.29.0 #118

Workflow file for this run

name: "CodeQL"
on:
push:
branches:
- "**"
- "!dependabot/**"
pull_request:
branches:
- "**"
- "!dependabot/**"
schedule:
- cron: "0 0 * * 0"
workflow_dispatch:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: cpp
queries: security-extended
config-file: ./.github/codeql/codeql-config.yml
# Install CMake
- uses: lukka/[email protected]
# Install NASM
- uses: ilammy/setup-nasm@v1
# Initialize the CMake directory and build
- name: Build
run: |
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DBUILD_NO_SUBFOLDERS=1
cmake --build build --config Release
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:cpp"