Skip to content

chore(deps): bump 8BitJonny/gh-get-current-pr from 3.0.0 to 4.0.0 #547

chore(deps): bump 8BitJonny/gh-get-current-pr from 3.0.0 to 4.0.0

chore(deps): bump 8BitJonny/gh-get-current-pr from 3.0.0 to 4.0.0 #547

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [ "dev", "master" ]
pull_request:
branches: [ "dev", "master" ]
schedule:
- cron: '34 12 * * 4'
env:
BUILD_TYPE: Release
jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on: ${{ matrix.os }}
timeout-minutes: 15
permissions:
# required for all workflows
security-events: write
# required to fetch internal or private CodeQL packs
packages: read
strategy:
fail-fast: false
matrix:
include:
- language: c-cpp
build-mode: manual
os: ubuntu-24.04
- language: python
build-mode: none
os: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v5
with:
submodules: recursive
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality
# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
- name: Setup compilers, dependencies, project and build
if: matrix.build-mode == 'manual'
uses: ./.github/workflows/setup-compilers
with:
os_name: ${{ matrix.os }}
compiler: clang
compiler_version: 16
sanitizers: Off
with_deps: false
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"