docs: fix default value

This commit is contained in:
Fernandez Ludovic 2023-06-12 20:07:33 +02:00
parent 444727df93
commit cde40a3b90

View File

@ -21,21 +21,21 @@ inputs:
required: false required: false
only-new-issues: only-new-issues:
description: "if set to true and the action runs on a pull request - the action outputs only newly found 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 required: false
skip-cache: skip-cache:
description: | description: |
if set to true then the all caching functionality will be complete disabled, if set to true then the all caching functionality will be complete disabled,
takes precedence over all other caching options. takes precedence over all other caching options.
default: false default: 'false'
required: false required: false
skip-pkg-cache: skip-pkg-cache:
description: "if set to true then the action doesn't cache or restore ~/go/pkg." description: "if set to true then the action doesn't cache or restore ~/go/pkg."
default: false default: 'false'
required: false required: false
skip-build-cache: skip-build-cache:
description: "if set to true then the action doesn't cache or restore ~/.cache/go-build." description: "if set to true then the action doesn't cache or restore ~/.cache/go-build."
default: false default: 'false'
required: false required: false
install-mode: install-mode:
description: "The mode to install golangci-lint. It can be 'binary' or 'goinstall'." description: "The mode to install golangci-lint. It can be 'binary' or 'goinstall'."