Skip to content

Commit a61ae77

Browse files
authored
SEC-507 MAINT: Snyk Action maint updates (#632)
* SEC-507 MAINT: Snyk Action maint updates * SEC-507 MAINT: remove push event from action * SEC-507 MAINT: validated fix disabling debug flag
1 parent 0371d5d commit a61ae77

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.github/workflows/snyk_sca_scan.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
name: Snyk Software Composition Analysis Scan
22
on:
3-
push:
4-
branches:
5-
- '*'
63
pull_request:
74
branches:
85
- master
@@ -25,4 +22,4 @@ jobs:
2522
env:
2623
SNYK_TOKEN: ${{ secrets.SNYK_API_TOKEN }}
2724
with:
28-
args: --debug --strict-out-of-sync=false --detection-depth=6 --exclude=docker,Dockerfile --severity-threshold=critical
25+
args: --all-projects --strict-out-of-sync=false --detection-depth=6 --exclude=docker,Dockerfile --severity-threshold=critical

.github/workflows/snyk_static_analysis_scan.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ name: Snyk Static Analysis Scan
22
# This SAST (Static Application Security Testing) scan is used to scan
33
# our first-party code for security vulnerabilities
44
on:
5-
push:
6-
branches:
7-
- '*'
85
pull_request:
96
branches:
107
- master
@@ -19,4 +16,4 @@ jobs:
1916
env:
2017
SNYK_TOKEN: ${{ secrets.SNYK_API_TOKEN }}
2118
continue-on-error: true
22-
run: snyk code test --strict-out-of-sync=false --detection-depth=6 --exclude=docker,Dockerfile --severity-threshold=high
19+
run: snyk code test --all-projects --strict-out-of-sync=false --detection-depth=6 --exclude=docker,Dockerfile --severity-threshold=high

0 commit comments

Comments
 (0)