Skip to content

Commit 5d6d0c4

Browse files
authored
NCN-102997: Enable blackduck scan on nkp-nutanix-products-catalog repo (#13)
1 parent f8bcd15 commit 5d6d0c4

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
name: Black Duck Daily Policy Check
3+
on:
4+
workflow_dispatch: # Enables manual triggering of the workflow
5+
jobs:
6+
security:
7+
if: github.repository == 'nutanix-cloud-native/nkp-nutanix-product-catalog'
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v4
12+
13+
- name: Black Duck Full Scan
14+
uses: synopsys-sig/synopsys-action@v1.10.0
15+
with:
16+
blackduck_url: ${{ secrets.BLACKDUCK_URL }}
17+
blackduck_token: ${{ secrets.BLACKDUCK_API_TOKEN }}
18+
github_token: ${{ secrets.GITHUB_TOKEN }}
19+
blackduck_scan_full: true
20+
blackduck_scan_failure_severities: 'BLOCKER,CRITICAL'

0 commit comments

Comments
 (0)