Skip to content

chore: overhaul CI/CD security scanning and harden workflows #11

chore: overhaul CI/CD security scanning and harden workflows

chore: overhaul CI/CD security scanning and harden workflows #11

Workflow file for this run

name: "CodeQL Analysis"
on:
push:
branches: [ main, development ]
pull_request:
branches: [ main, development ]
schedule:
- cron: '0 3 * * 0'
permissions:
contents: read
security-events: write
actions: read
jobs:
analyze:
name: Analyze (python)
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Initialize CodeQL
uses: github/codeql-action/init@c10b8064de6f491fea524254123dbe5e09572f13 # v4.35.1
with:
languages: python
- name: Autobuild
uses: github/codeql-action/autobuild@c10b8064de6f491fea524254123dbe5e09572f13 # v4.35.1
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@c10b8064de6f491fea524254123dbe5e09572f13 # v4.35.1
with:
category: "/language:python"