mirror of
https://github.com/ivuorinen/config-checker.git
synced 2026-03-09 23:58:12 +00:00
35 lines
752 B
YAML
35 lines
752 B
YAML
---
|
|
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
|
|
name: "CodeQL"
|
|
|
|
on:
|
|
push:
|
|
branches: ["main"]
|
|
pull_request:
|
|
branches: ["main"]
|
|
schedule:
|
|
- cron: "22 8 * * 0"
|
|
merge_group:
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
analyze:
|
|
name: Analyze
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
actions: read
|
|
contents: read
|
|
packages: read
|
|
security-events: write
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
language: ["actions", "javascript"]
|
|
steps:
|
|
- name: CodeQL Analysis
|
|
uses: ivuorinen/actions/codeql-analysis@34372bcd366d87d95dd71081ecd4fb0c1c6a4f00 # v2026.03.08
|
|
with:
|
|
language: ${{ matrix.language }}
|
|
queries: security-and-quality
|