From d73da62e0bc152fd8d166ef5ad50e8c4821dfb97 Mon Sep 17 00:00:00 2001 From: Ben Date: Mon, 12 Jan 2026 16:18:33 +0200 Subject: [PATCH] fix: make version input optional with default 'latest' Restore backward compatibility by making the version input optional with a default value of 'latest'. This fixes the breaking change introduced in b2454fb where version was made required without updating documentation or providing a default. Users who don't specify a version will now automatically use the latest kubescape release, matching the previous behavior. Signed-off-by: Ben --- action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 3ccefa2..a85c69d 100644 --- a/action.yml +++ b/action.yml @@ -99,7 +99,8 @@ inputs: The version of Kubescape to use. Can be a specific version (e.g. "v3.0.21") or "latest". - required: true + required: false + default: "latest" image: description: | An image to scan.