diff --git a/.golangci.yml b/.golangci.yml index 1ad45784..c733901e 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -175,7 +175,6 @@ linters-settings: - hexLiteral - httpNoBody - ifElseChain - - ioutilDeprecated - methodExprCall - newDeref - octalLiteral diff --git a/Makefile b/Makefile index 9aa25da3..83df1495 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -GOLANGCI_LINT_VERSION = v1.51.2 +GOLANGCI_LINT_VERSION = v1.52.2 TOOLS_DIR = .tools diff --git a/renovate.json b/renovate.json index 39a2b6e9..926ec627 100644 --- a/renovate.json +++ b/renovate.json @@ -2,5 +2,17 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "config:base" + ], + "regexManagers": [ + { + "fileMatch": [ + "^Makefile$" + ], + "matchStrings": [ + "GOLANGCI_LINT_VERSION = (?.*?)\\n" + ], + "datasourceTemplate": "docker", + "depNameTemplate": "golangci/golangci-lint" + } ] }