-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dependency vulnerability scan in nightly build (#104)
- Update dependencies to latest versions. - Required Java 11+ to run checkstyle as v10 is not compatible with earlier Java versions. - Add testing with Java 17. Signed-off-by: Mark S. Lewis <[email protected]>
- Loading branch information
1 parent
b57fa41
commit 861bd9b
Showing
3 changed files
with
91 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
~ Copyright 2022 IBM All Rights Reserved. | ||
~ | ||
~ SPDX-License-Identifier: Apache-2.0 | ||
--> | ||
|
||
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.3.xsd"> | ||
<suppress> | ||
<notes><![CDATA[ | ||
CVE was reported against @grpc/grpc-js npm package, not Java | ||
]]></notes> | ||
<packageUrl regex="true">^pkg:maven/io\.opentelemetry\.instrumentation/opentelemetry\-grpc\-1\.6@.*$</packageUrl> | ||
<cve>CVE-2020-7768</cve> | ||
</suppress> | ||
<suppress> | ||
<notes><![CDATA[ | ||
CVE was reported in version 1.4-M1 to 1.4-RC and fixed in version 1.4.0 | ||
]]></notes> | ||
<packageUrl regex="true">^pkg:maven/org\.jetbrains\.kotlin/kotlin\-stdlib\-common@1\.4\.0$</packageUrl> | ||
<cve>CVE-2020-15824</cve> | ||
</suppress> | ||
</suppressions> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters