mirror of
https://github.com/ivuorinen/base-configs-markdownlint.git
synced 2026-03-08 03:57:08 +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@242ecca8f01357727f5b2b040154ccdece61720b # v2026.03.07
|
|
with:
|
|
language: ${{ matrix.language }}
|
|
queries: security-and-quality
|