Skip to content

feat: add CodeQL security scanning and Dependabot (v0.7.27) #1

feat: add CodeQL security scanning and Dependabot (v0.7.27)

feat: add CodeQL security scanning and Dependabot (v0.7.27) #1

Workflow file for this run

name: CodeQL
on:
push:
branches: [master]
pull_request:
branches: [master]
schedule:
- cron: "0 6 * * 1" # Every Monday at 06:00 UTC
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: python
queries: security-extended
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:python"