Fix: Use g_string_free in update_scap_affected_products #2391
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "CodeQL" | |
on: | |
push: | |
branches: [ main, stable, oldstable ] | |
pull_request: | |
branches: [ main, stable, oldstable ] | |
paths-ignore: | |
- '**/*.md' | |
- '**/*.txt' | |
schedule: | |
- cron: '30 5 * * 0' # 5:30h on Sundays | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
container: ${{ vars.IMAGE_REGISTRY }}/greenbone/gvmd-build:stable | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ 'c' ] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
# build between init and analyze ... | |
- name: Configure and compile gvmd | |
run: | | |
mkdir build | |
cd build/ | |
cmake -DCMAKE_BUILD_TYPE=Debug .. | |
make install | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 |