-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (33 loc) · 1.07 KB
/
Copy pathcodeql.yml
File metadata and controls
40 lines (33 loc) · 1.07 KB
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
30
31
32
33
34
35
36
37
38
39
40
name: CodeQL
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
schedule:
# Weekly, so newly-published advisories are caught even without a push.
- cron: "27 3 * * 1"
permissions:
contents: read
concurrency:
group: codeql-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze:
name: "Analyze (python)"
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write # required to upload CodeQL results to the Security tab
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Initialize CodeQL
uses: github/codeql-action/init@dd903d2e4f5405488e5ef1422510ee31c8b32357 # v3.36.2
with:
languages: python
queries: security-and-quality
# Python is interpreted — no build step is needed, so autobuild is omitted.
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@dd903d2e4f5405488e5ef1422510ee31c8b32357 # v3.36.2
with:
category: "/language:python"