Skip to content
This repository has been archived by the owner on Apr 5, 2024. It is now read-only.

Commit

Permalink
Merge pull request #15 from BrandEmbassy/DE-57584-black-duck
Browse files Browse the repository at this point in the history
DE-57584: Configure GHA for Black Duck scanning.
  • Loading branch information
nclemons78 authored Aug 21, 2023
2 parents ebae1bc + 10e5591 commit 94562dc
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/blackduck.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: blackduck

on:
push:
branches:
- master
schedule:
# Execute at 00:00 on 1st day of every month
- cron: '0 0 1 * *'

jobs:
# A job to execute a blackduck scan
blackduck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Run Synopsys Detect
uses: synopsys-sig/[email protected]
env:
DETECT_TOOLS: DETECTOR
DETECT_PROJECT_NAME: ${{ github.repository }}
NODE_EXTRA_CA_CERTS: ${{ secrets.LOCAL_CA_CERT_PATH }}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
detect-version: 7.9.0
blackduck-url: https://nice2.app.blackduck.com/
blackduck-api-token: ${{ secrets.BLACKDUCK_API_TOKEN }}
scan-mode: INTELLIGENT

0 comments on commit 94562dc

Please sign in to comment.