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
Copy file name to clipboardExpand all lines: src/main/java/org/openrewrite/java/dependencies/DependencyVulnerabilityCheck.java
+26-25Lines changed: 26 additions & 25 deletions
Original file line number
Diff line number
Diff line change
@@ -77,17 +77,18 @@ public class DependencyVulnerabilityCheck extends ScanningRecipe<DependencyVulne
77
77
78
78
@Override
79
79
publicStringgetDisplayName() {
80
-
return"Check for dependency vulnerabilities";
80
+
return"Find and fix vulnerable dependencies";
81
81
}
82
82
83
83
@Override
84
84
publicStringgetDescription() {
85
85
//language=markdown
86
-
return"This is a software composition analysis (SCA) tool which detects publicly disclosed vulnerabilities. " +
87
-
"If vulnerabilities are found, it will generate a report linking to the associated CVE entries. " +
88
-
"Vulnerability information comes from the [GitHub Security Advisory Database](https://docs.github.com/en/code-security/security-advisories/global-security-advisories/about-the-github-advisory-database), " +
89
-
"which aggregates vulnerability data from several public databases, including the [National Vulnerability Database](https://nvd.nist.gov/) maintained by the United States government. " +
90
-
"Dependencies following [Semantic Versioning](https://semver.org/) will see their _patch_ version updated where applicable.";
86
+
return"This software composition analysis (SCA) tool detects and upgrades dependencies with publicly disclosed vulnerabilities. " +
87
+
"This recipe both generates a report of vulnerable dependencies and upgrades to newer versions with fixes. " +
88
+
"Automatic upgrade of vulnerable versions is performed when the fixed version is a minor or patch version bump. " +
89
+
"Vulnerability information comes from the [GitHub Security Advisory Database](https://docs.github.com/en/code-security/security-advisories/global-security-advisories/about-the-github-advisory-database), " +
90
+
"which aggregates vulnerability data from several public databases, including the [National Vulnerability Database](https://nvd.nist.gov/) maintained by the United States government. " +
91
+
"Dependencies following [Semantic Versioning](https://semver.org/) will see their _patch_ version updated where applicable.";
0 commit comments