From cd12e7c917046ca368f1706468ef52c7eb1b183c Mon Sep 17 00:00:00 2001 From: Zik <48577114+zikaeroh@users.noreply.github.com> Date: Sun, 21 Feb 2021 11:10:14 -0800 Subject: [PATCH] Update "version" config in README example #98 was closed by #101, but the README still says that only a major-minor version is accepted. It also says that this field is required, but `action.yml` says otherwise. Copy the description from `action.yml` into the README for consistency. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5578720866..1e781a37cb 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ jobs: - name: golangci-lint uses: golangci/golangci-lint-action@v2 with: - # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. + # Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version version: v1.29 # Optional: working directory, useful for monorepos