forked from mandiant/capa
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: ҉αkα x⠠⠵ <[email protected]>
- Loading branch information
1 parent
2ce5c1d
commit cc7c2e9
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# This workflow uses actions that are not certified by GitHub. | ||
# They are provided by a third-party and are governed by | ||
# separate terms of service, privacy policy, and support | ||
# documentation. | ||
name: Synopsys Security Testing | ||
|
||
on: | ||
push: | ||
# At this time, it is recommended to run Polaris only on pushes to main branches | ||
# Pull request analysis will be supported by Polaris in the future | ||
branches: [ "master" ] | ||
|
||
pull_request: | ||
branches: [ "master" ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Synopsys Action | ||
uses: synopsys-sig/[email protected] | ||
with: | ||
#------------------------------------------COVERITY----------------------------------------- | ||
coverity_url: ${{ secrets.COVERITY_URL }} | ||
coverity_user: ${{ secrets.COVERITY_USER }} | ||
coverity_passphrase: ${{ secrets.COVERITY_PASSPHRASE }} | ||
|
||
#------------------------------------------BLACKDUCK---------------------------------------- | ||
blackduck_token: ${{ secrets.BLACKDUCK_API_TOKEN }} | ||
blackduck_url: ${{ secrets.BLACKDUCK_URL }} | ||
|
||
#------------------------------------------POLARIS------------------------------------------ | ||
polaris_server_url: ${{ secrets.POLARIS_SERVER_URL }} | ||
polaris_access_token: ${{ secrets.POLARIS_ACCESS_TOKEN }} | ||
polaris_assessment_types: "SCA,SAST" | ||
|
||
|