diff --git a/renovate.json b/renovate.json index 1784b3de..f7b723a8 100644 --- a/renovate.json +++ b/renovate.json @@ -1,30 +1,56 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["config:best-practices", "schedule:monthly"], + "extends": [ + "config:best-practices", + "schedule:monthly" + ], "vulnerabilityAlerts": { "schedule": "before 4am" }, - "postUpdateOptions": ["gomodTidy", "gomodUpdateImportPaths"], + "postUpdateOptions": [ + "gomodTidy", + "gomodUpdateImportPaths" + ], "packageRules": [ { - "matchManagers": ["github-actions"], + "matchManagers": [ + "github-actions" + ], "groupName": "github-actions" }, { - "matchManagers": ["gomod"], - "excludePackageNames": ["go"], - "matchUpdateTypes": ["minor", "patch"], - "groupName": "go" + "matchManagers": [ + "gomod" + ], + "matchUpdateTypes": [ + "minor", + "patch" + ], + "groupName": "go", + "matchPackageNames": [ + "!go" + ] }, { - "matchManagers": ["npm"], - "matchDepTypes": ["dependencies"], - "matchUpdateTypes": ["minor", "patch"], + "matchManagers": [ + "npm" + ], + "matchDepTypes": [ + "dependencies" + ], + "matchUpdateTypes": [ + "minor", + "patch" + ], "groupName": "npm" }, { - "matchManagers": ["npm"], - "matchDepTypes": ["devDependencies"], + "matchManagers": [ + "npm" + ], + "matchDepTypes": [ + "devDependencies" + ], "groupName": "npm dev" } ]