You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/ci.yml
+20-1Lines changed: 20 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -461,4 +461,23 @@ jobs:
461
461
git add .
462
462
git commit -m "Update documentation for ${{ needs.build.outputs.release_tag }}"
463
463
git push
464
-
464
+
465
+
fortify_scan:
466
+
name: Fortify Security Scan
467
+
runs-on: ubuntu-latest
468
+
steps:
469
+
- name: Checkout code
470
+
uses: actions/checkout@v4
471
+
472
+
- name: Run Fortify on Demand SAST & SCA Scan
473
+
uses: fortify/github-action@v2
474
+
with:
475
+
sast-scan: true # Enables Fortify's native SAST and SCA. Chosen to satisfy 'sca:true' despite 'sast:false' as no separate SCA-only parameter is available.
476
+
debricked-sca-scan: false # As per Debricked SCA: Disabled
0 commit comments