Skip to content

Commit

Permalink
dev: prepare v1.24.0
Browse files Browse the repository at this point in the history
GIT_TAG=v1.24.0 make README.md
  • Loading branch information
ernado committed Mar 15, 2020
1 parent b851f17 commit 6fd4383
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.8:
Here is the recommended way to install golangci-lint v1.24.0:

```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.8
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.24.0

# or install it into ./bin/
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.23.8
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.24.0

# 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.8
wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.24.0

golangci-lint --version
```
Expand All @@ -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.8 golangci-lint run -v
docker run --rm -v $(pwd):/app -w /app golangci/golangci-lint:v1.24.0 golangci-lint run -v
```

### Go
Expand Down

0 comments on commit 6fd4383

Please sign in to comment.