File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ version : 2
2+ updates :
3+ # Keep GitHub Actions up to date
4+ - package-ecosystem : " github-actions"
5+ directory : " /"
6+ schedule :
7+ interval : " weekly"
8+ commit-message :
9+ prefix : " chore"
Original file line number Diff line number Diff line change 1+ name : " CodeQL"
2+
3+ on :
4+ push :
5+ branches : [ main ]
6+ pull_request :
7+ branches : [ main ]
8+ schedule :
9+ # Run weekly on Monday at 06:00 UTC
10+ - cron : ' 0 6 * * 1'
11+
12+ jobs :
13+ analyze :
14+ name : Analyze (Python)
15+ runs-on : ubuntu-latest
16+ permissions :
17+ security-events : write
18+
19+ steps :
20+ - name : Checkout repository
21+ uses : actions/checkout@v4
22+
23+ - name : Initialize CodeQL
24+ uses : github/codeql-action/init@v3
25+ with :
26+ languages : python
27+
28+ - name : Perform CodeQL Analysis
29+ uses : github/codeql-action/analyze@v3
30+ with :
31+ category : " /language:python"
You can’t perform that action at this time.
0 commit comments