-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (40 loc) · 1012 Bytes
/
Copy pathcodeql.yml
File metadata and controls
47 lines (40 loc) · 1012 Bytes
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
41
42
43
44
45
46
47
name: CodeQL
on:
pull_request:
paths-ignore:
- "**/*.md"
- "docs/**"
- "LICENSE"
push:
paths-ignore:
- "**/*.md"
- "docs/**"
- "LICENSE"
branches:
- master
schedule:
- cron: "0 3 * * 1"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
security-events: write
actions: read
jobs:
analyze:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
submodules: recursive
- name: Initialize CodeQL
uses: github/codeql-action/init@65216971a11ded447a6b76263d5a144519e5eee1 # codeql-bundle-v2.25.2
with:
languages: python
build-mode: none
- name: Analyze
uses: github/codeql-action/analyze@65216971a11ded447a6b76263d5a144519e5eee1 # codeql-bundle-v2.25.2
with:
category: "/language:python"