1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
---
name: "CodeQL"
# yamllint disable-line rule:truthy
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
schedule:
- cron: "30 1 * * 0"
permissions:
actions: read
contents: read
security-events: write
jobs:
codeql:
name: Scanning
runs-on: ubuntu-latest
steps:
- name: โคต๏ธ Check out code from GitHub
uses: actions/checkout@v6.0.2
- name: ๐ Initialize CodeQL
uses: github/codeql-action/init@v4.32.2
- name: ๐ Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4.32.2
|