Skip to content

CodeQL

CodeQL #693

Workflow file for this run

name: "CodeQL"
on:
push:
branches: ["main"]
paths-ignore:
- "**/*.md"
- "**/*.txt"
- "pkg/andybalholm/cascadia/fuzz/corpus"
- "pkg/andybalholm/cascadia/test_resources"
- "pkg/PuerkitoBio/goquery/bench"
- "pkg/PuerkitoBio/goquery/testdata"
pull_request:
# The branches below must be a subset of the branches above
branches: ["main"]
paths-ignore:
- "**/*.md"
- "**/*.txt"
- "pkg/andybalholm/cascadia/fuzz/corpus"
- "pkg/andybalholm/cascadia/test_resources"
- "pkg/PuerkitoBio/goquery/bench"
- "pkg/PuerkitoBio/goquery/testdata"
- "pkg/JohannesKaufmann/html-to-markdown/testdata"
- "pkg/JohannesKaufmann/html-to-markdown/examples"
- "pkg/muesli/cache2go/examples"
schedule:
- cron: "0 0 * * *"
env:
GO_VERSION: "1.22.5"
permissions:
actions: read
contents: read
security-events: write
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: ["go", "javascript"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- 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}}"