From: German Service Network Date: Sun, 25 Jan 2026 16:59:37 +0000 (+0100) Subject: CodeQL via GitHub Action X-Git-Url: https://git.gsnw.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4af8bbb4c56b9126c6ff761683ab5b6d06a82517;p=ftraceroute.git CodeQL via GitHub Action --- diff --git a/.github/workflows/codeql-analysis.yaml b/.github/workflows/codeql-analysis.yaml new file mode 100644 index 0000000..9d5138e --- /dev/null +++ b/.github/workflows/codeql-analysis.yaml @@ -0,0 +1,36 @@ +name: "CodeQL" + +on: + push: + branches: [ main ] + schedule: + - cron: '38 4 * * 3' + +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@v6 + + - name: Initialize CodeQL + uses: github/codeql-action/init@v4 + with: + languages: ${{ matrix.language }} + + - name: Autobuild + uses: github/codeql-action/autobuild@v4 + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v4 \ No newline at end of file