Skip to content

CodeQL scanning

CodeQL scanning #319

name: CodeQL scanning
on:
push:
branches:
- 'trunk'
pull_request:
# The branches below must be a subset of the branches above
branches:
- 'trunk'
schedule:
- cron: '0 8 * * 2'
jobs:
# Performs a code analysis using CodeQL.
#
# Performs the following steps:
# - Checks out the repository.
# - Initializes CodeQL.
# - Performs CodeQL analysis.
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: ['javascript']
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@df409f7d9260372bd5f19e5b04e83cb3c43714ae # v3.27.9
with:
languages: ${{ matrix.language }}
config-file: ./.github/codeql/codeql-config.yml
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@df409f7d9260372bd5f19e5b04e83cb3c43714ae # v3.27.9