From b31e3fc15e34bb5f049ad52ebcba5e7847deadb3 Mon Sep 17 00:00:00 2001 From: appel_c Date: Wed, 24 Sep 2025 11:49:32 -0500 Subject: [PATCH] fix: flatten input args passing into bash script --- checkout_repositories/action.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/checkout_repositories/action.yml b/checkout_repositories/action.yml index 6306ef3..c24c835 100644 --- a/checkout_repositories/action.yml +++ b/checkout_repositories/action.yml @@ -43,8 +43,4 @@ runs: echo "BEC_WIDGETS_BRANCH: ${{ inputs.BEC_WIDGETS_BRANCH }}" echo "OPHYD_DEVICES_BRANCH: ${{ inputs.OPHYD_DEVICES_BRANCH }}" chmod +x "$SCRIPT_PATH" - "$SCRIPT_PATH" "${{ inputs.PLUGIN_REPO_NAME }}" \ - "${{ inputs.BEC_PLUGIN_REPO_BRANCH }}" \ - "${{ inputs.BEC_CORE_BRANCH }}" \ - "${{ inputs.BEC_WIDGETS_BRANCH }}" \ - "${{ inputs.OPHYD_DEVICES_BRANCH }}" + "$SCRIPT_PATH" "${{ inputs.PLUGIN_REPO_NAME }}" "${{ inputs.BEC_PLUGIN_REPO_BRANCH }}" "${{ inputs.BEC_CORE_BRANCH }}" "${{ inputs.BEC_WIDGETS_BRANCH }}" "${{ inputs.OPHYD_DEVICES_BRANCH }}"