Black Duck Daily Policy Check #258
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Black Duck Daily Policy Check | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
security: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "16.19.x" | |
- name: Build Project | |
run: yarn install && yarn build-pkg nutanix | |
- name: Black Duck Full Scan | |
uses: synopsys-sig/[email protected] | |
env: | |
DETECT_PROJECT_NAME: ${{ github.event.repository.name }} | |
with: | |
blackduck_url: ${{ secrets.BLACKDUCK_URL }} | |
blackduck_token: ${{ secrets.BLACKDUCK_API_TOKEN }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
blackduck_scan_full: true | |
blackduck_scan_failure_severities: 'BLOCKER,CRITICAL' |