Skip to content

Commit bb7ef4a

Browse files
committed
sca scan fix
1 parent 99c3273 commit bb7ef4a

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/sca-scan.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,14 @@ jobs:
1616
json: true
1717
output: snyk.json
1818
continue-on-error: true
19+
20+
- name: Verify Snyk output exists # ← optional debug step
21+
run: |
22+
if [ ! -f snyk.json ]; then
23+
echo "snyk.json missing — dumping directory contents:"
24+
ls -la
25+
exit 1
26+
fi
27+
echo "snyk.json found ($(wc -c < snyk.json) bytes)"
28+
1929
- uses: contentstack/sca-policy@main

0 commit comments

Comments
 (0)