From f6806ba59456f71d6ee56486fb3fdb3b030f5a37 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 00:34:09 +0000 Subject: [PATCH] chore(config): migrate config renovate.json (#101) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- renovate.json | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/renovate.json b/renovate.json index 8a0c8c4..fd50830 100644 --- a/renovate.json +++ b/renovate.json @@ -1,18 +1,27 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ - "config:base" + "config:recommended" ], "packageRules": [ { "description": "Update all dependencies up to the minor release level", - "matchUpdateTypes": ["minor", "patch", "pin", "digest"], + "matchUpdateTypes": [ + "minor", + "patch", + "pin", + "digest" + ], "automerge": true }, { "description": "Opt-out minimum Go version updates: https://github.com/renovatebot/renovate/issues/16715", - "matchManagers": ["gomod"], - "matchDepTypes": ["golang"], + "matchManagers": [ + "gomod" + ], + "matchDepTypes": [ + "golang" + ], "enabled": false } ]