Skip to content

CI: Bump the github-actions group across 1 directory with 2 updates #137

CI: Bump the github-actions group across 1 directory with 2 updates

CI: Bump the github-actions group across 1 directory with 2 updates #137

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@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
with:
check-latest: true
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@e12f0178983d466f2f6028f5cc7a6d786fd97f4b
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@e12f0178983d466f2f6028f5cc7a6d786fd97f4b
with:
category: "/language:${{matrix.language}}"