Skip to content

Commit 6cc9cdd

Browse files
authored
Update ivy version to 2.5.2 (#619)
- Updates `org.apache.ivy:ivy` to version 2.5.2 to fix CVE-2022-46751 - Adds 2 CVEs to trivyignore due to `debezium-supplier` transitive dependencies.
1 parent e9afea1 commit 6cc9cdd

File tree

5 files changed

+17
-7
lines changed

5 files changed

+17
-7
lines changed

.github/workflows/common.yml

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ jobs:
5656
ignore-unfixed: true
5757
severity: 'CRITICAL,HIGH'
5858
exit-code: 1
59+
trivyignores: .trivyignore
5960
- name: 'Scanned'
6061
shell: bash
6162
run: echo "::info ::Scanned"

.trivyignore

+16-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,17 @@
1+
################################
2+
## From debezium-supplier
3+
################################
4+
CVE-2023-1428
5+
CVE-2023-32731
6+
7+
################################
8+
# Snakeyaml 1.3.3
9+
# SCDF usage has been mitigated.
10+
################################
111
CVE-2022-1471
2-
CVE-2016-1000027
12+
13+
################################
14+
# Spring Web 5.3.x
15+
# SCDF not affected.
16+
################################
17+
CVE-2016-1000027

applications/processor/groovy-processor/pom.xml

-4
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@
1414
<relativePath>../../stream-applications-core/pom.xml</relativePath>
1515
</parent>
1616

17-
<properties>
18-
<apache-ivy.version>2.5.1</apache-ivy.version>
19-
</properties>
20-
2117
<dependencies>
2218

2319
<dependency>

applications/processor/script-processor/pom.xml

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
<properties>
1818
<jruby-complete.version>9.3.9.0</jruby-complete.version>
1919
<jython-standalone.version>2.7.3</jython-standalone.version>
20-
<apache-ivy.version>2.5.1</apache-ivy.version>
2120
<graalvm.version>22.3.0</graalvm.version>
2221
</properties>
2322

scan-jar.sh

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ SCDIR=$(realpath $SCDIR)
44
if [[ "$1" != *"-sources.jar" ]] && [[ "$1" != *"-javadoc.jar" ]]; then
55
if [ "$TRIVY_UPLOAD" == "true" ]; then
66
echo "Scanning:$1"
7-
echo "trivy rootfs --format sarif -o \"$1.sarif\" \"$1\""
87
trivy rootfs --exit-code 1 --format sarif -o "$1.sarif" "$1"
98
if [ -f "$1.sarif" ]; then
109
if [ -f $SCDIR/runs.sarif ]; then

0 commit comments

Comments
 (0)