Blackduck - Publishing blackducksca-workflow.yml workflow file by null #1
This file contains hidden or 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 Security Scan | |
| "on": | |
| push: | |
| branches: | |
| - main | |
| - master | |
| - develop | |
| - stage | |
| - release | |
| pull_request: | |
| branches: | |
| - main | |
| - master | |
| - develop | |
| - stage | |
| - release | |
| workflow_dispatch: {} | |
| jobs: | |
| scan: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Source | |
| uses: actions/checkout@v4 | |
| - name: Black Duck Security Scan | |
| id: black-duck-security-scan | |
| uses: blackduck-inc/black-duck-security-scan@v2 | |
| with: | |
| blackducksca_url: ${{ vars.BLACKDUCKSCA_URL }} | |
| blackducksca_token: ${{ secrets.BLACKDUCKSCA_TOKEN }} | |
| blackducksca_waitForScan: true | |
| mark_build_status: success | |
| include_diagnostics: false | |
| blackducksca_prComment_enabled: true | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| blackducksca_fixpr_enabled: true | |
| blackducksca_reports_sarif_create: false | |
| blackducksca_upload_sarif_report: false |