We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb05cec commit c359650Copy full SHA for c359650
tasks/retire/index.js
@@ -58,18 +58,17 @@ async function run() {
58
: 'none';
59
60
const message =
61
-`- Component: ${component}
62
-- Version: ${version}
+`- Version: ${version}
63
- File: ${file}
64
- Severity: ${severity}
65
- CVEs: ${cves}
66
- Info: ${infoLinks}`;
67
68
if (hasVulns) {
69
hasRealVulnerabilities = true;
70
- tl.warning(`Vulnerable library found:\n${message}`);
+ tl.warning(`Vulnerable library found: ${component}\n${message}`);
71
} else if (verbose) {
72
- console.log(`Library matched but no known vulnerabilities:\n${message}`);
+ console.log(`Library matched but no known vulnerabilities: ${component}\n${message}`);
73
}
74
75
0 commit comments