We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9819719 commit 4df664dCopy full SHA for 4df664d
1 file changed
.github/workflows/blackducksca-workflow.yml
@@ -0,0 +1,26 @@
1
+# Quickstart: Black Duck Security Scan Action with blackducksca:
2
+# https://documentation.blackduck.com/bundle/bridge/page/documentation/t_github-blackduck-quickstart.html
3
+name: Black Duck Security Scan
4
+on:
5
+ pull_request:
6
+ branches:
7
+ - main
8
+ - master
9
+ - develop
10
+ - stage
11
+ - release
12
+ workflow_dispatch: {}
13
+jobs:
14
+ blackducksca:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Checkout Source
18
+ uses: actions/checkout@v4
19
+
20
+ - name: Black Duck Security Scan
21
+ id: black-duck-security-scan
22
+ uses: blackduck-inc/black-duck-security-scan@v2
23
+ with:
24
+ ### SCANNING: Required fields
25
+ blackducksca_url: ${{ vars.BLACKDUCKSCA_URL }}
26
+ blackducksca_token: ${{ secrets.BLACKDUCKSCA_TOKEN }}
0 commit comments