From a6d739671d915553f4eab39c593d8bd65e32d5e3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 19 Mar 2026 01:09:47 +0000 Subject: [PATCH] chore(deps): migrate config renovate.json --- renovate.json | 63 +++++++++++++++++++++++++++++++++++---------------- 1 file changed, 44 insertions(+), 19 deletions(-) diff --git a/renovate.json b/renovate.json index fdb2e4c..2bce5a9 100644 --- a/renovate.json +++ b/renovate.json @@ -20,10 +20,20 @@ "prCreation": "immediate", "rebaseWhen": "behind-base-branch", "packageRules": [ + { + "matchCategories": [ + "golang" + ], + "minimumReleaseAge": "3 days" + }, { "description": "Updating Go language dependencies", - "matchDatasources": ["go"], - "matchUpdateTypes": ["major"], + "matchDatasources": [ + "go" + ], + "matchUpdateTypes": [ + "major" + ], "groupName": "Go major dependencies", "schedule": [ "before 10am on the first day of the month" @@ -31,42 +41,60 @@ }, { "description": "golang.org/x Package grouping", - "matchDatasources": ["go"], - "matchPackagePrefixes": ["golang.org/x"], + "matchDatasources": [ + "go" + ], "groupName": "golang.org/x packages", - "automerge": true + "automerge": true, + "matchPackageNames": [ + "golang.org/x{/,}**" + ] }, { "description": "Updating GitHub Actions", - "matchManagers": ["github-actions"], + "matchManagers": [ + "github-actions" + ], "groupName": "GitHub Actions", "pinDigests": true, "automerge": true }, { "description": "Security updates are provided immediately.", - "matchUpdateTypes": ["patch"], - "matchPackagePatterns": [".*"], - "matchDatasources": ["go"], + "matchUpdateTypes": [ + "patch" + ], + "matchDatasources": [ + "go" + ], "automerge": true, - "stabilityDays": 0 + "minimumReleaseAge": null, + "matchPackageNames": [ + "/.*/" + ] }, { "description": "Vulnerable packages are given top priority.", - "matchDatasources": ["go"], + "matchDatasources": [ + "go" + ], "vulnerabilityAlerts": { "enabled": true, - "labels": ["security"], - "stabilityDays": 0, + "labels": [ + "security" + ], + "minimumReleaseAge": null, "prPriority": 10 } } ], "vulnerabilityAlerts": { "enabled": true, - "labels": ["security"] + "labels": [ + "security" + ] }, - "stabilityDays": 3, + "minimumReleaseAge": "3 days", "prHourlyLimit": 2, "ignorePaths": [ "**/testdata/**", @@ -75,8 +103,5 @@ "postUpdateOptions": [ "gomodTidy", "gomodUpdateImportPaths" - ], - "golang": { - "minimumReleaseAge": "3 days" - } + ] }