diff --git a/renovate.json b/renovate.json index 05eef7f..dc90c1b 100644 --- a/renovate.json +++ b/renovate.json @@ -1,13 +1,25 @@ { - "extends": ["config:base"], - "postUpdateOptions": ["gomodTidy", "gomodUpdateImportPaths"], + "extends": [ + "config:recommended" + ], + "postUpdateOptions": [ + "gomodTidy", + "gomodUpdateImportPaths" + ], "packageRules": [ { "groupName": "all non-major dependencies", "groupSlug": "all-minor-patch", - "matchPackagePatterns": ["*"], - "matchUpdateTypes": ["minor", "patch"], - "schedule": ["before 8am on Monday"] + "matchUpdateTypes": [ + "minor", + "patch" + ], + "schedule": [ + "before 8am on Monday" + ], + "matchPackageNames": [ + "*" + ] } ] }