From a99d2032454641d832c07299a5089fca58ce7f76 Mon Sep 17 00:00:00 2001 From: Abhinav Pathak Date: Mon, 27 Jul 2026 11:11:13 +0530 Subject: [PATCH] fix: allow colon before appDistZip in task-detection grep MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Multi-module gradle builds list subproject tasks as e.g. tam-deploy:appDistZip — the word-boundary regex added in 87065f4 didn't account for the colon, so appDistZip was never detected and the JFrog scan step was silently skipped for every client. --- build-image/jfrog-scanning/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-image/jfrog-scanning/action.yaml b/build-image/jfrog-scanning/action.yaml index 93e9e685..c3238ee6 100644 --- a/build-image/jfrog-scanning/action.yaml +++ b/build-image/jfrog-scanning/action.yaml @@ -95,7 +95,7 @@ runs: "${gradle_args[@]}" \ ${{ inputs.build-server-arguments }} \ 2>/dev/null | - grep -qE '(^|[[:space:]])appDistZip([[:space:]]|$)'; then + grep -qE '(^|[[:space:]:])appDistZip([[:space:]]|$)'; then echo "appDistZip=true" >> "$GITHUB_OUTPUT" echo "appDistZip task is available." else