diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 98010cc71808..c6731fa8bebe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,7 +47,7 @@ jobs: - uses: actions/checkout@v3 - uses: golangci/golangci-lint-action@v3 with: - version: v1.49.0 + version: v1.50.1 skip-cache: true args: --timeout=5m diff --git a/script/setup/install-dev-tools b/script/setup/install-dev-tools index 5f11ec82a103..b94dc3e8e00d 100755 --- a/script/setup/install-dev-tools +++ b/script/setup/install-dev-tools @@ -14,7 +14,6 @@ # See the License for the specific language governing permissions and # limitations under the License. - # # Install developer tools to $GOBIN (or $GOPATH/bin if unset) # @@ -23,7 +22,7 @@ set -eu -o pipefail # install `protobuild` and other commands go install github.com/stevvooe/protobuild@v0.1.0 go install github.com/cpuguy83/go-md2man/v2@v2.0.1 -go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.49.0 +go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.50.1 # the following packages need to exist in $GOPATH so we can't use # go modules-aware mode of `go get` for these includes used during