Skip to content

ci: Bump github/codeql-action from 3 to 4 (#1) #12

ci: Bump github/codeql-action from 3 to 4 (#1)

ci: Bump github/codeql-action from 3 to 4 (#1) #12

Workflow file for this run

name: "CodeQL"

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

View workflow run for this annotation

GitHub Actions / .github/workflows/codeql.yml

Invalid workflow file

(Line: 23, Col: 19): Matrix vector 'language' does not contain any values
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '0 0 * * 0' # Weekly on Sunday
permissions:
contents: read
security-events: write
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: []
# Note: OCaml is not directly supported by CodeQL
# This workflow will analyze any JavaScript/Python if added later
steps:
- name: Checkout repository
uses: actions/checkout@v6
# CodeQL doesn't support OCaml directly, but we include this
# for when/if JS tooling is added (e.g., playground, docs site)
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
if: matrix.language != ''
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v4
if: matrix.language != ''
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
if: matrix.language != ''