From 733623702857ccc937e58a1aa1999f9b99ca063e Mon Sep 17 00:00:00 2001 From: Colin Douglas Date: Tue, 24 Mar 2026 15:18:51 -0700 Subject: [PATCH] print chainctl version after installation Signed-off-by: Colin Douglas --- action.yaml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/action.yaml b/action.yaml index f7cd91f..bf45009 100644 --- a/action.yaml +++ b/action.yaml @@ -19,7 +19,7 @@ inputs: Determines if we export HTTP_AUTH env variable with chainctl auth token. required: false - default: false + default: "false" identity: description: | @@ -49,7 +49,7 @@ inputs: Set the logging verbosity for chainctl. A value of 0 disables logging output. Valid values are 1-5, increasing in verbosity. required: false - default: 0 + default: "0" config-path: description: | @@ -62,7 +62,7 @@ inputs: description: | Whether to retry on errors downloading the chainctl binary. required: false - default: true + default: "true" apk-host: description: | @@ -81,7 +81,7 @@ inputs: description: | Whether to install the Chainguard Libraries pip keyring package. required: false - default: false + default: "false" runs: using: "composite" @@ -124,6 +124,9 @@ runs: chmod +x ./${out} echo "$(pwd)" >> $GITHUB_PATH + # Print the version of chainctl installed + ./${out} version + - name: Authenticate with Chainguard (assumed identity) shell: bash if: ${{ inputs.identity != '' }}