.github: Extract golangci-lint version

Bump to v1.43.0

Signed-off-by: Manuel Rüger <manuel@rueg.eu>
This commit is contained in:
Manuel Rüger 2021-11-18 14:59:26 +01:00
parent e859b280fc
commit f4510e454b
1 changed files with 2 additions and 1 deletions

View File

@ -18,6 +18,7 @@ env:
E2E_SETUP_KUBECTL: yes
SUDO: sudo
GO_VERSION: "^1.17"
GOLANGCI_LINT_VERSION: "v1.43.0"
jobs:
ci-go-lint:
@ -40,7 +41,7 @@ jobs:
- name: Lint
run: |
curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.40.0
curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin ${{ env.GOLANGCI_LINT_VERSION }}
make lint
ci-validate-manifests: