Skip to content
This repository was archived by the owner on Apr 22, 2025. It is now read-only.

Commit e59b6d6

Browse files
Reduce frequency of vulnerability scan to weekly (#161)
Also suppress a false positive vulnerability detection. Signed-off-by: Mark S. Lewis <[email protected]>
1 parent 6dc1d38 commit e59b6d6

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.github/workflows/vulnerability-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: "Security vulnerability scan"
22

33
on:
44
schedule:
5-
- cron: "20 23 * * *"
5+
- cron: "20 23 * * 0"
66

77
jobs:
88
scan:

dependency-suppressions.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,11 @@
4848
<packageUrl regex="true">^pkg:maven/com\.ibm\.cloud/cloudant(-common)?@.*$</packageUrl>
4949
<cve>CVE-2023-26268</cve>
5050
</suppress>
51+
<suppress>
52+
<notes><![CDATA[
53+
gRPC Java is not affected by this vulnerability; only gRPC C++, Python and Ruby
54+
]]></notes>
55+
<packageUrl regex="true">^pkg:maven/io\.opentelemetry\.instrumentation/opentelemetry\-grpc\-1\.6@.*$</packageUrl>
56+
<cve>CVE-2023-4785</cve>
57+
</suppress>
5158
</suppressions>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@
364364
<plugin>
365365
<groupId>org.owasp</groupId>
366366
<artifactId>dependency-check-maven</artifactId>
367-
<version>8.3.1</version>
367+
<version>8.4.0</version>
368368
<configuration>
369369
<skipProvidedScope>true</skipProvidedScope>
370370
<skipTestScope>true</skipTestScope>

0 commit comments

Comments
 (0)