From 76a82c6ed19784036bbf2d4c84d0228ca12381a4 Mon Sep 17 00:00:00 2001 From: Aleksandr Razumov Date: Wed, 4 Mar 2020 06:42:36 +0300 Subject: [PATCH] dev: prepare v1.23.8 GIT_TAG=v1.23.8 make README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index fb50687b..efc9a565 100644 --- a/README.md +++ b/README.md @@ -73,17 +73,17 @@ use deprecated option `--enable-all` and a new linter is added or even without ` It's highly recommended to install a specific version of golangci-lint available on the [releases page](https://github.com/golangci/golangci-lint/releases). -Here is the recommended way to install golangci-lint v1.23.7: +Here is the recommended way to install golangci-lint v1.23.8: ```bash # binary will be $(go env GOPATH)/bin/golangci-lint -curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.23.7 +curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.23.8 # or install it into ./bin/ -curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.23.7 +curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.23.8 # In alpine linux (as it does not come with curl by default) -wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.23.7 +wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.23.8 golangci-lint --version ``` @@ -103,7 +103,7 @@ brew upgrade golangci/tap/golangci-lint ### Docker ```bash -docker run --rm -v $(pwd):/app -w /app golangci/golangci-lint:v1.23.7 golangci-lint run -v +docker run --rm -v $(pwd):/app -w /app golangci/golangci-lint:v1.23.8 golangci-lint run -v ``` ### Go