From 3d0b7aca066ae849efd5705c8e763952a4bcc76c Mon Sep 17 00:00:00 2001 From: "Achim H." Date: Wed, 6 May 2026 11:36:17 +0200 Subject: [PATCH] changed trivy scanners options --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index ed08c13..c35967d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -57,7 +57,7 @@ pipeline { // --template "@/contrib/html.tpl": Das Standard-Trivy-Layout // Scannt das Dateisystem auf Schwachstellen (NuGet) und Secrets // --exit-code 1 lässt die Pipeline bei kritischen Fehlern abbrechen - sh 'trivy fs -scanners vuln,secret,misconfig,license --exit-code 1 --severity HIGH,CRITICAL --format template --template "@/contrib/html.tpl" -o reports/trivy-report.html .' + sh 'trivy fs -scanners vuln,secret,misconfig --exit-code 1 --severity HIGH,CRITICAL --format template --template "@/contrib/html.tpl" -o reports/trivy-report.html .' } } }