Skip to content

Run CodeQL

Run CodeQL #13

Workflow file for this run

name: Run CodeQL
on:
schedule:
- cron: 0 0 * * *
permissions:
contents: read
paths-to-ignore:

Check failure on line 10 in .github/workflows/codeql.yml

View workflow run for this annotation

GitHub Actions / Run CodeQL

Invalid workflow file

The workflow is not valid. .github/workflows/codeql.yml (Line: 10, Col: 1): Unexpected value 'paths-to-ignore'
- test
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [cpp, javascript, python]
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@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
with:
category: /language:${{matrix.language}}