Skip to content

Commit

Permalink
fix(sarif): Add timeout and security-checks for sarif (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
simar7 committed Aug 4, 2022
1 parent 0d7cf2d commit cb606df
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions entrypoint.sh
Expand Up @@ -111,6 +111,7 @@ if [ $vulnType ] && [ "$scanType" != "config" ] && [ "$scanType" != "sbom" ];the
fi
if [ $securityChecks ];then
ARGS="$ARGS --security-checks $securityChecks"
SARIF_ARGS="$SARIF_ARGS --security-checks $securityChecks"
fi
if [ $severity ];then
ARGS="$ARGS --severity $severity"
Expand Down Expand Up @@ -141,6 +142,7 @@ if [ $trivyIgnores ];then
fi
if [ $timeout ];then
ARGS="$ARGS --timeout $timeout"
SARIF_ARGS="$SARIF_ARGS --timeout $timeout"
fi
if [ $ignorePolicy ];then
ARGS="$ARGS --ignore-policy $ignorePolicy"
Expand Down

0 comments on commit cb606df

Please sign in to comment.