diff --git a/renovate.json b/renovate.json index e3002e4..2b25051 100644 --- a/renovate.json +++ b/renovate.json @@ -1,7 +1,7 @@ { "configMigration": true, "extends": [ - "config:base", + "config:recommended", "workarounds:all", "replacements:all", ":enableVulnerabilityAlerts", @@ -18,14 +18,19 @@ ":pinDevDependencies", ":ignoreModulesAndTests" ], - "labels": [ - "dependencies" - ], + "labels": [ + "dependencies" + ], "semanticCommits": "enabled", - "golang": { - "postUpdateOptions": [ - "gomodTidy", - "gomodUpdateImportPaths" - ] - } + "packageRules": [ + { + "matchCategories": [ + "golang" + ], + "postUpdateOptions": [ + "gomodTidy", + "gomodUpdateImportPaths" + ] + } + ] }