Skip to content

Commit 2cce2fb

Browse files
committed
correct ql file
1 parent 71589da commit 2cce2fb

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

.github/workflows/test.yml

+12-5
Original file line numberDiff line numberDiff line change
@@ -24,27 +24,34 @@ jobs:
2424
- name: Initialize CodeQL
2525
uses: github/codeql-action/init@v3
2626
with:
27-
languages: javascript # Adjust based on your project (e.g., python, java, csharp, go)
27+
languages: javascript # Change to match your repo (e.g., python, java, csharp, go)
2828

2929
- name: Run CodeQL Custom Queries
3030
uses: github/codeql-action/analyze@v3
3131
with:
3232
category: "custom-query"
3333
queries: .github/queries
3434

35-
- name: Verify SARIF File Exists
36-
run: ls -la .github/results
35+
# ✅ Debug Step: Check if CodeQL Generated Results
36+
- name: List files in the workspace
37+
run: ls -la
3738

39+
- name: List files in the results directory
40+
run: ls -la ./results || echo "Results directory not found!"
41+
42+
# ✅ Fix: Correct SARIF File Path for Upload
3843
- name: Upload CodeQL SARIF Results
3944
uses: actions/upload-artifact@v4
4045
with:
4146
name: codeql-custom-results
42-
path: .github/results/security-results.sarif
47+
path: ./results/*.sarif # Ensure we are looking for SARIF files in the correct location
4348

49+
# ✅ Upload SARIF to GitHub Security Alerts
4450
- name: Upload SARIF to GitHub Security Tab
4551
uses: github/codeql-action/upload-sarif@v3
4652
with:
47-
sarif_file: .github/results/results/security-results.sarif
53+
sarif_file: ./results/*.sarif # Ensure correct path
54+
4855

4956

5057

0 commit comments

Comments
 (0)