2021-10-05 17:22:46 +00:00
|
|
|
name: "CodeQL"
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- development
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- development
|
|
|
|
schedule:
|
|
|
|
- cron: '32 11 * * 6'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
analyze:
|
|
|
|
name: Analyze
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
actions: read
|
|
|
|
contents: read
|
|
|
|
security-events: write
|
|
|
|
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout repository
|
2024-05-18 10:31:36 +00:00
|
|
|
uses: actions/checkout@v4.1.6
|
2021-10-05 17:22:46 +00:00
|
|
|
# Initializes the CodeQL tools for scanning.
|
|
|
|
-
|
|
|
|
name: Initialize CodeQL
|
2023-12-16 10:30:20 +00:00
|
|
|
uses: github/codeql-action/init@v3
|
2021-10-05 17:22:46 +00:00
|
|
|
with:
|
|
|
|
languages: 'python'
|
|
|
|
-
|
|
|
|
name: Autobuild
|
2023-12-16 10:30:20 +00:00
|
|
|
uses: github/codeql-action/autobuild@v3
|
2021-10-05 17:22:46 +00:00
|
|
|
-
|
|
|
|
name: Perform CodeQL Analysis
|
2023-12-16 10:30:20 +00:00
|
|
|
uses: github/codeql-action/analyze@v3
|