You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
download gh alerts for otp-compliance to download those existing issues
and ignore them when the PR is scan for vulnerability issues. those
issues should still be sent to GH because otherwise GH considers them
fixed. in the Alerts section from GH, we can mark them as fixed.
Copy file name to clipboardExpand all lines: .github/workflows/reusable-vendor-vulnerability-scanner.yml
+28-9Lines changed: 28 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,10 @@ on:
50
50
default: false
51
51
type: boolean
52
52
fail_if_cve:
53
-
description: 'The build fails if a CVE is found. This is ok to activate in PRs, but does not make sense in scheduled analysis since CVEs will be reported in Github Security via SARIF file upload.'
53
+
# The build fails if a CVE is found. This is ok to activate in PRs, but
54
+
# does not make sense in scheduled analysis since CVEs will be reported
55
+
# in Github Security
56
+
description: 'Fail if CVE is found'
54
57
required: true
55
58
default: false
56
59
type: boolean
@@ -67,15 +70,16 @@ on:
67
70
default: false
68
71
type: boolean
69
72
fail_if_cve:
70
-
description: 'The build fails if a CVE is found. This is ok to activate in PRs, but does not make sense in scheduled analysis since CVEs will be reported in Github Security.'
73
+
# The build fails if a CVE is found. This is ok to activate in PRs, but
74
+
# does not make sense in scheduled analysis since CVEs will be reported
75
+
# in Github Security.
76
+
description: 'Fail if CVE is found'
71
77
required: true
72
78
default: false
73
79
type: boolean
74
80
75
81
env:
76
82
VERSION: ${{ inputs.version }}
77
-
REPO: "erlang/otp"
78
-
# when testing, change to fork, e.g., "kikofernandez/otp"
79
83
80
84
jobs:
81
85
analysis-vendor-dependencies:
@@ -86,30 +90,45 @@ jobs:
86
90
# committed into them. thus, a workflow_dispatch or workflow_call would
87
91
# not work, and we would not be able to analyse vendor dependecies there.
0 commit comments