From 042b03fbc59c8bd3d9329fa5185503067982f993 Mon Sep 17 00:00:00 2001 From: carole-lavillonniere Date: Mon, 23 Feb 2026 14:43:53 +0100 Subject: [PATCH] reconfigure renovate --- renovate.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/renovate.json b/renovate.json index 5db72dd..adb75da 100644 --- a/renovate.json +++ b/renovate.json @@ -2,5 +2,31 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "config:recommended" + ], + "postUpdateOptions": ["gomodTidy"], + "packageRules": [ + { + "matchManagers": ["gomod"], + "matchDepTypes": ["golang"], + "rangeStrategy": "bump", + "groupName": "Go toolchain" + }, + { + "matchManagers": ["github-actions"], + "matchDepNames": ["go"], + "groupName": "Go toolchain" + }, + { + "matchManagers": ["gomod"], + "excludePackageNames": ["go"], + "matchUpdateTypes": ["minor", "patch"], + "groupName": "Go dependencies (non-major)" + }, + { + "matchManagers": ["gomod"], + "excludePackageNames": ["go"], + "matchUpdateTypes": ["major"], + "groupName": "Go dependencies (major)" + } ] }