From cde40a3b90f46695665ea0f0496756f21649c16d Mon Sep 17 00:00:00 2001 From: Fernandez Ludovic Date: Mon, 12 Jun 2023 20:07:33 +0200 Subject: [PATCH] docs: fix default value --- action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/action.yml b/action.yml index 465642c..3301616 100644 --- a/action.yml +++ b/action.yml @@ -21,21 +21,21 @@ inputs: required: false only-new-issues: description: "if set to true and the action runs on a pull request - the action outputs only newly found issues" - default: false + default: 'false' required: false skip-cache: description: | if set to true then the all caching functionality will be complete disabled, takes precedence over all other caching options. - default: false + default: 'false' required: false skip-pkg-cache: description: "if set to true then the action doesn't cache or restore ~/go/pkg." - default: false + default: 'false' required: false skip-build-cache: description: "if set to true then the action doesn't cache or restore ~/.cache/go-build." - default: false + default: 'false' required: false install-mode: description: "The mode to install golangci-lint. It can be 'binary' or 'goinstall'."