Skip to content

CodeQL Scan

CodeQL Scan #659

Workflow file for this run

name: "CodeQL Scan"
on:
push:
branches:
- main
pull_request:
types:
- opened
- ready_for_review
- reopened
pull_request_review:
types:
- submitted
- edited
jobs:
analyze:
name: Analyze
runs-on: [ubuntu-latest]
timeout-minutes: 10
if: (github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]')
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: ["python", "javascript"]
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 }}
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"