From fe6fdfce76dfd70f2f9d32f18ff1ff5d05582734 Mon Sep 17 00:00:00 2001 From: evan-boone Date: Mon, 27 Jul 2026 22:27:43 +0200 Subject: [PATCH] fix(aikido-scan): default to failing only on critical severity issues The scan previously failed by default on HIGH and above. Change the default min-severity-level to CRITICAL so CI only fails on the most severe findings out of the box. --- aikido-scan/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aikido-scan/action.yml b/aikido-scan/action.yml index e0b410d..ce0046c 100644 --- a/aikido-scan/action.yml +++ b/aikido-scan/action.yml @@ -10,7 +10,7 @@ inputs: The minimum severity level of an issue that should cause the scan to fail. Allowed values: 'LOW' | 'MEDIUM' | 'HIGH' | 'CRITICAL' - default: "HIGH" + default: "CRITICAL" fail-on-sast-scan: description: "Whether the scan should fail if new SAST issues are found" default: "true"