Skip to content

Commit

Permalink
- Bump DependencyCheck, skip known CVE in plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
nwithan8 committed Sep 29, 2023
1 parent 8dfc9ac commit ba15af6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
7 changes: 6 additions & 1 deletion dependency-check-suppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,16 @@
<suppress>
<!--
Below vulnerabilities are from outdated Protocol Buffers which is the dependency of Error Prone.
This will not affect our code
This will not affect our code.
-->
<vulnerabilityName>CVE-2022-3171</vulnerabilityName>
<vulnerabilityName>CVE-2022-3509</vulnerabilityName>
<vulnerabilityName>CVE-2022-3510</vulnerabilityName>
<vulnerabilityName>CVE-2023-2976</vulnerabilityName>
<!--
Vulnerability in the Dependency Check itself, used during testing.
Will not affect end-users.
Ref: https://github.com/jeremylong/DependencyCheck/issues/5943 -->
<vulnerabilityName>CVE-2023-4759</vulnerabilityName>
</suppress>
</suppressions>
8 changes: 6 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,12 @@
<version>1.18.26</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit</artifactId>
<version>6.7.0.202309050840-r</version>
<scope>test</scope>
</dependency>
</dependencies>

<organization>
Expand Down Expand Up @@ -334,8 +340,6 @@
<suppressionFile>dependency-check-suppressions.xml</suppressionFile>
<failBuildOnCVSS>7</failBuildOnCVSS>
<junitFailOnCVSS>7</junitFailOnCVSS>
<scanPlugins>false</scanPlugins>
<skipTestScope>true</skipTestScope>
</configuration>
<executions>
<execution>
Expand Down

0 comments on commit ba15af6

Please sign in to comment.