File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -4,14 +4,16 @@ name: Dependency Review - License/Vulns
4
4
# This workflow analyzes dependencies introduced by pull requests to help identify security vulnerabilities
5
5
# and for invalid dependency licenses.
6
6
#
7
- # To override the default configuration preset, set the `DEPENDENCY_REVIEW_CONFIG_PRESET` variable in the repository settings.
8
- # The default preset is "license-deny-vulnerability-high". This preset has this behavior:
7
+ # The default config-preset is "license-deny-vulnerability-high". This preset has this behavior:
9
8
#
10
9
# Fail if a dependency is found with a license that is in the deny_licenses list and fails if vulnerabilities are found in the
11
10
# dependency tree with a high severity or greater.
12
11
#
13
- # To override the config preset, set the DEPENDENCY_REVIEW_CONFIG_PRESET repo variable using the gh cli:
12
+ # To override the config- preset, set the DEPENDENCY_REVIEW_CONFIG_PRESET repo variable using the gh cli:
14
13
# gh variable set DEPENDENCY_REVIEW_CONFIG_PRESET --body "license-deny-vulnerability-high"
14
+ #
15
+ # To override the show-openssf-scorecard option, set the DEPENDENCY_REVIEW_SHOW_OPENSSF_SCORECARD repo variable using the gh cli:
16
+ # gh variable set DEPENDENCY_REVIEW_SHOW_OPENSSF_SCORECARD --body "false"
15
17
# ##
16
18
17
19
on :
38
40
uses : smartcontractkit/.github/actions/dependency-review@dependency-review/v2
39
41
with :
40
42
config-preset : ${{ vars.DEPENDENCY_REVIEW_CONFIG_PRESET || 'license-deny-vulnerability-high' }}
43
+ show-openssf-scorecard : ${{ vars.DEPENDENCY_REVIEW_SHOW_OPENSSF_SCORECARD || 'true' }}
You can’t perform that action at this time.
0 commit comments