Skip to content

Bump github/codeql-action from 4.31.11 to 4.32.2 in the github-actions group #190

Bump github/codeql-action from 4.31.11 to 4.32.2 in the github-actions group

Bump github/codeql-action from 4.31.11 to 4.32.2 in the github-actions group #190

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
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 repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
check-latest: true
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2
with:
languages: ${{ matrix.language }}
# Install dependencies and build
- name: Install dependencies
run: sudo apt install -y automake libtool pkg-config libssl-dev libz-dev nasm libnuma-dev autoconf-archive
- name: autogen
run: ACLOCAL_PATH=/usr/share/aclocal ./autogen.sh
- name: configure
run: ./configure
- name: make
run: make -j
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2
with:
category: "/language:${{matrix.language}}"