diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index aea9526..3b3354b 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -6,7 +6,7 @@ USER vscode RUN sudo mkdir -p /usr/local/share/zsh/site-functions # renovate: datasource=github-releases depName=golangci/golangci-lint -ARG GOLANGCI_VERSION=v2.12.2 +ARG GOLANGCI_VERSION=v2.13.1 # Fetch the install script pinned to the release tag (not HEAD) before piping to sh. RUN curl -sSfL "https://raw.githubusercontent.com/golangci/golangci-lint/${GOLANGCI_VERSION}/install.sh" \ | sudo sh -s -- -b /usr/local/bin ${GOLANGCI_VERSION} \ diff --git a/Makefile b/Makefile index ea6e031..0ba741a 100644 --- a/Makefile +++ b/Makefile @@ -211,7 +211,7 @@ ENVTEST_K8S_VERSION ?= $(shell v='$(call gomodver,k8s.io/api)'; \ printf '%s\n' "$$v" | sed -E 's/^v?[0-9]+\.([0-9]+).*/1.\1/') # renovate: datasource=github-releases depName=golangci/golangci-lint -GOLANGCI_LINT_VERSION ?= v2.12.2 +GOLANGCI_LINT_VERSION ?= v2.13.1 .PHONY: kustomize kustomize: $(KUSTOMIZE) ## Download kustomize locally if necessary.