Skip to content

Commit 38793ed

Browse files
committed
Fix: Remove Python from CodeQL - project is Rust/JS only
1 parent 6849f3c commit 38793ed

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

.github/workflows/codeql.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,24 +20,19 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
language: [ 'javascript', 'python' ]
24-
# Rust support is improving but sometimes requires build steps.
25-
# For this repo, scanning JS (Frida scripts) and Python (if any) is valid.
26-
# If we want to scan Rust, we add 'rust' but might need build command.
23+
language: [ 'javascript' ]
24+
# Only JavaScript (Frida scripts) - no Python in this project
25+
# Rust CodeQL support requires additional setup
2726

2827
steps:
2928
- name: Checkout repository
30-
uses: actions/checkout@v6
29+
uses: actions/checkout@v4
3130

32-
# Initializes the CodeQL tools for scanning.
3331
- name: Initialize CodeQL
3432
uses: github/codeql-action/init@v4
3533
with:
3634
languages: ${{ matrix.language }}
3735

38-
- name: Autobuild
39-
uses: github/codeql-action/autobuild@v4
40-
4136
- name: Perform CodeQL Analysis
4237
uses: github/codeql-action/analyze@v4
4338
with:

0 commit comments

Comments
 (0)