diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 646d904..a52c3c5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -63,8 +63,9 @@ jobs: - name: golangci-lint uses: golangci/golangci-lint-action@v3 with: - version: v1.50.1 + version: v1.64.0 args: --timeout=5m0s + working-directory: . - name: Run bootstrap run: PIPELINE=1 script/bootstrap.sh - name: 'Get Previous tag' diff --git a/.golangci.yaml b/.golangci.yaml index aca1625..7babfcf 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -212,7 +212,7 @@ run: # golangci.com configuration # https://github.com/golangci/golangci/wiki/Configuration service: - golangci-lint-version: 1.50.1 # use the fixed version to not introduce new linters unexpectedly + golangci-lint-version: 1.64.0 # use the fixed version to not introduce new linters unexpectedly prepare: - echo "here I can run custom commands, but no preparation needed for this repo" diff --git a/Makefile b/Makefile index 8a7ffe9..5edb162 100644 --- a/Makefile +++ b/Makefile @@ -67,7 +67,7 @@ golangci-lint: ## Install golangci ifeq (, $(shell which golangci-lint)) @{ \ set -e ;\ - go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.50.1 ;\ + go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.64.0 ;\ } GOLANGCI_LINT=$(GOBIN)/golangci-lint else