diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 891b0ab317a..23617ab2ed1 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -55,11 +55,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: cache: false go-version-file: go.mod @@ -67,10 +67,11 @@ jobs: if: github.ref != 'refs/heads/master' uses: wagoid/commitlint-github-action@v5 - name: GolangCI-Lint - uses: golangci/golangci-lint-action@v3 + uses: golangci/golangci-lint-action@v6 with: skip-cache: false - version: v1.54.1 + version: v1.58.1 + only-new-issues: true - name: Whitespace check run: make check-whitespace - name: go mod tidy check diff --git a/Makefile b/Makefile index 10a94baa46d..e0511d4d0dc 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ GO ?= go GOBIN ?= $$($(GO) env GOPATH)/bin GOLANGCI_LINT ?= $(GOBIN)/golangci-lint -GOLANGCI_LINT_VERSION ?= v1.57.2 +GOLANGCI_LINT_VERSION ?= v1.58.1 GOGOPROTOBUF ?= protoc-gen-gogofaster GOGOPROTOBUF_VERSION ?= v1.3.1 BEEKEEPER_INSTALL_DIR ?= $(GOBIN)