Skip to content

Commit d9bda5f

Browse files
committed
codql: Upload Sarif and DVL
Signed-off-by: Daniel Schaefer <dhs@frame.work>
1 parent acda54e commit d9bda5f

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

.github/workflows/codeql.yml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,21 @@ jobs:
3434
- name: Perform CodeQL analysis
3535
uses: github/codeql-action/analyze@v4
3636
with:
37-
category: "/language:${{matrix.language}}"
37+
output: sarif-results
38+
39+
- name: Upload SARIF file
40+
uses: actions/upload-artifact@v4
41+
with:
42+
name: codeql-sarif
43+
path: sarif-results
44+
45+
- name: Generate DVL
46+
shell: cmd
47+
run: |
48+
"C:\Program Files (x86)\Windows Kits\10\Tools\dvl\dvl.exe" /manualCreate FrameworkSensors X64 /sarifPath sarif-results
49+
50+
- name: Upload DVL
51+
uses: actions/upload-artifact@v4
52+
with:
53+
name: dvl
54+
path: sarif-results/FrameworkSensors.DVL.XML

0 commit comments

Comments
 (0)