diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index b86475b..f53ce43 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -17,7 +17,7 @@ jobs: go-version: 1.17.x - name: Lint run: | - curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.42.1 + curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.43.0 make lint vet: diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index cc348d9..8358f26 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -18,7 +18,7 @@ jobs: go-version: 1.17.x - name: Lint run: | - curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.42.1 + curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.43.0 make lint vet: diff --git a/Makefile b/Makefile index 7551eaf..5c6ebea 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ lint: - golangci-lint run --timeout 2m0s + golangci-lint run --timeout 3m0s fmt: go fmt ./...