diff --git a/.github/workflows/common.yml b/.github/workflows/common.yml
index 91ad9c85..953bcc4b 100644
--- a/.github/workflows/common.yml
+++ b/.github/workflows/common.yml
@@ -56,6 +56,7 @@ jobs:
ignore-unfixed: true
severity: 'CRITICAL,HIGH'
exit-code: 1
+ trivyignores: .trivyignore
- name: 'Scanned'
shell: bash
run: echo "::info ::Scanned"
diff --git a/.trivyignore b/.trivyignore
index 0016a0bc..7934daf1 100644
--- a/.trivyignore
+++ b/.trivyignore
@@ -1,2 +1,17 @@
+################################
+## From debezium-supplier
+################################
+CVE-2023-1428
+CVE-2023-32731
+
+################################
+# Snakeyaml 1.3.3
+# SCDF usage has been mitigated.
+################################
CVE-2022-1471
-CVE-2016-1000027
\ No newline at end of file
+
+################################
+# Spring Web 5.3.x
+# SCDF not affected.
+################################
+CVE-2016-1000027
diff --git a/applications/processor/groovy-processor/pom.xml b/applications/processor/groovy-processor/pom.xml
index 34e0244b..2f90ecaa 100644
--- a/applications/processor/groovy-processor/pom.xml
+++ b/applications/processor/groovy-processor/pom.xml
@@ -14,10 +14,6 @@
../../stream-applications-core/pom.xml
-
- 2.5.1
-
-
diff --git a/applications/processor/script-processor/pom.xml b/applications/processor/script-processor/pom.xml
index d3ca5554..afb3a2a8 100644
--- a/applications/processor/script-processor/pom.xml
+++ b/applications/processor/script-processor/pom.xml
@@ -17,7 +17,6 @@
9.3.9.0
2.7.3
- 2.5.1
22.3.0
diff --git a/scan-jar.sh b/scan-jar.sh
index 284f04a1..481ea84c 100755
--- a/scan-jar.sh
+++ b/scan-jar.sh
@@ -4,7 +4,6 @@ SCDIR=$(realpath $SCDIR)
if [[ "$1" != *"-sources.jar" ]] && [[ "$1" != *"-javadoc.jar" ]]; then
if [ "$TRIVY_UPLOAD" == "true" ]; then
echo "Scanning:$1"
- echo "trivy rootfs --format sarif -o \"$1.sarif\" \"$1\""
trivy rootfs --exit-code 1 --format sarif -o "$1.sarif" "$1"
if [ -f "$1.sarif" ]; then
if [ -f $SCDIR/runs.sarif ]; then