Skip to content

Commit 8e01cf5

Browse files
authored
- Bump DependencyCheck, skip known CVE in plugin (#286)
1 parent 1d62e88 commit 8e01cf5

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

dependency-check-suppressions.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,16 @@
33
<suppress>
44
<!--
55
Below vulnerabilities are from outdated Protocol Buffers which is the dependency of Error Prone.
6-
This will not affect our code
6+
This will not affect our code.
77
-->
88
<vulnerabilityName>CVE-2022-3171</vulnerabilityName>
99
<vulnerabilityName>CVE-2022-3509</vulnerabilityName>
1010
<vulnerabilityName>CVE-2022-3510</vulnerabilityName>
1111
<vulnerabilityName>CVE-2023-2976</vulnerabilityName>
12+
<!--
13+
Vulnerability in the Dependency Check itself, used during testing.
14+
Will not affect end-users.
15+
Ref: https://github.com/jeremylong/DependencyCheck/issues/5943 -->
16+
<vulnerabilityName>CVE-2023-4759</vulnerabilityName>
1217
</suppress>
1318
</suppressions>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@
329329
<plugin>
330330
<groupId>org.owasp</groupId>
331331
<artifactId>dependency-check-maven</artifactId>
332-
<version>8.2.1</version>
332+
<version>8.4.0</version>
333333
<configuration>
334334
<suppressionFile>dependency-check-suppressions.xml</suppressionFile>
335335
<failBuildOnCVSS>7</failBuildOnCVSS>

0 commit comments

Comments
 (0)