From 65d0d3965a99c95024953bf7926ab8057bdcac8e Mon Sep 17 00:00:00 2001 From: Yogesh Chaudhary Date: Mon, 23 Feb 2026 13:33:00 +0530 Subject: [PATCH] fix: use hyphen instead of underscore for rl-wrapper suppress-output flag The newer rl-wrapper version changed the CLI flag from --suppress_output to --suppress-output, causing the rl-scanner job to fail with an unrecognized arguments error. --- .github/actions/rl-scanner/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/rl-scanner/action.yml b/.github/actions/rl-scanner/action.yml index 960d34e9..3474a59b 100644 --- a/.github/actions/rl-scanner/action.yml +++ b/.github/actions/rl-scanner/action.yml @@ -53,7 +53,7 @@ runs: --repository "${{ github.repository }}" \ --commit "${{ github.sha }}" \ --build-env "github_actions" \ - --suppress_output + --suppress-output # Check the outcome of the scanner if [ $? -ne 0 ]; then