-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (38 loc) · 1.06 KB
/
Copy pathoptimized-codeql.yml
File metadata and controls
43 lines (38 loc) · 1.06 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
41
42
43
name: Optimized CodeQL Analysis
on:
workflow_dispatch:
inputs:
run_optimized:
description: 'Run optimized CodeQL scan'
required: true
default: 'true'
type: boolean
jobs:
optimized-analysis:
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Initialize CodeQL (Optimized Configuration)
uses: github/codeql-action/init@v3
with:
languages: python
build-mode: none
# Use custom configuration file
config-file: ./.github/codeql-config/codeql-config.yml
# Use optimized queries
queries: security-extended,security-and-quality
ram: 8192
threads: 0
timeout: 900
- name: Perform CodeQL Analysis (Optimized)
uses: github/codeql-action/analyze@v3
with:
category: "/language:python/optimized-high-precision"