We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0baf886 commit ace3b04Copy full SHA for ace3b04
.github/workflows/security.yaml
@@ -107,6 +107,19 @@ jobs:
107
with:
108
sarif_file: reports/dependency-check-report.sarif
109
category: 'dependency-check'
110
+
111
+ - name: Create Dependency Check Summary
112
+ run: |
113
+ echo "## 📦 Dependency Security Check" >> $GITHUB_STEP_SUMMARY
114
+ echo "" >> $GITHUB_STEP_SUMMARY
115
116
+ if [[ -f "reports/dependency-check-report.sarif" ]]; then
117
+ echo "✅ Dependency check report found" >> $GITHUB_STEP_SUMMARY
118
+ echo "See [Dependency Check Report](reports/dependency-check-report.sarif)" >> $GITHUB_STEP_SUMMARY
119
+ else
120
+ echo "❌ Dependency check report missing" >> $GITHUB_STEP_SUMMARY
121
+ exit 1
122
+ fi
123
124
security-policy:
125
name: Security Policy Check
0 commit comments