Skip to content

Bump pypa/cibuildwheel from 2.13.0 to 2.13.1 #328

Bump pypa/cibuildwheel from 2.13.0 to 2.13.1

Bump pypa/cibuildwheel from 2.13.0 to 2.13.1 #328

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [main]
pull_request:
schedule:
- cron: "15 21 * * 6"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
analyze:
name: Analyze ${{ matrix.language }}
runs-on: ubuntu-latest
permissions:
security-events: write
strategy:
fail-fast: false
matrix:
language: ["cpp", "python"]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
- name: Set up mold as linker
uses: rui314/setup-mold@v1
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
config-file: .github/codeql-config.yml
- name: Configure CMake
if: ${{ matrix.language == 'cpp' }}
run: cmake -S . -B build -DBUILD_DDSIM_TESTS=ON -DBINDINGS=ON
- name: Build cpp
if: ${{ matrix.language == 'cpp' }}
run: cmake --build build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
upload: False
output: sarif-results
- name: filter-sarif
uses: advanced-security/filter-sarif@main
with:
patterns: |
-**/extern/**
input: sarif-results/${{ matrix.language }}.sarif
output: sarif-results/${{ matrix.language }}.sarif
- name: Upload SARIF
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: sarif-results/${{ matrix.language }}.sarif