From aa1ce52e7103fdab6c06903b859f623b28c09eba Mon Sep 17 00:00:00 2001 From: Jeroen van Schie Date: Fri, 3 Oct 2025 11:33:46 +0200 Subject: [PATCH] fix: correct syntax in checkout_repository if statement by using single quotes --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index e4856fd..5f1278b 100644 --- a/action.yml +++ b/action.yml @@ -26,7 +26,7 @@ runs: using: "composite" steps: - name: Checkout code - if: inputs.checkout_repository == "true" + if: inputs.checkout_repository == 'true' uses: actions/checkout@v5 - name: Extract version from tag