Skip to content

Add CodeQL Scan

Add CodeQL Scan #12

Workflow file for this run

name: "CodeQL OpenKAT"
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
schedule:
# Weekly on Sunday.
- cron: "30 1 * * 0"
jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on: ["ubuntu-latest"]
permissions:
# required for all workflows
security-events: write
strategy:
fail-fast: false
matrix:
include:
- language: javascript-typescript
build-mode: none
- language: python
build-mode: none
- language: actions
build-mode: none
steps:
- name: Checkout repository
uses: actions/checkout@v4
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
queries: security-extended # Use security extended, when too many false positives we can switch back to default
# Use the CodeQL tools for analyzing.
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"