From 1694bbf872a0a51f32de251779e4533231a53342 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Wed, 14 Aug 2024 06:02:10 +0200 Subject: [PATCH] chore(config): migrate renovate config (#800) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) The Renovate config in this repository needs migrating. Typically this is because one or more configuration options you are using have been renamed. You don't need to merge this PR right away, because Renovate will continue to migrate these fields internally each time it runs. But later some of these fields may be fully deprecated and the migrations removed. So it's a good idea to merge this migration PR soon. 🔕 **Ignore**: Close this PR and you won't be reminded about config migration again, but one day your current config may no longer be valid. ❓ Got questions? Does something look wrong to you? Please don't hesitate to [request help here](https://togithub.com/renovatebot/renovate/discussions). --- This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View the [repository job log](https://developer.mend.io/github/slsa-framework/slsa-verifier). --- renovate.json | 50 ++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 38 insertions(+), 12 deletions(-) diff --git a/renovate.json b/renovate.json index 1784b3de2..f7b723a86 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" } ]