Skip to content

build(deps): bump cross-platform-actions/action from 0.24.0 to 0.25.0 #424

build(deps): bump cross-platform-actions/action from 0.24.0 to 0.25.0

build(deps): bump cross-platform-actions/action from 0.24.0 to 0.25.0 #424

Workflow file for this run

name: CodeQL
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: "10 14 * * 2"
jobs:
analyze:
name: Analyze
runs-on: ubuntu-22.04
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update -y
sudo apt-get install -y \
gcc \
acl \
libacl1-dev \
attr \
libcap2-bin \
libcap-dev \
libonig-dev \
liburing-dev
- name: Configure
run: |
./configure
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: cpp
queries: +security-and-quality
config-file: .github/codeql.yml
- name: Build
run: |
make -j$(nproc) all
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:cpp"