From b4ac4c19d9f1d28e0009553ed0c19170929e3025 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 10 May 2026 10:36:16 +0200 Subject: [PATCH] chore(config): migrate config renovate.json5 (#925) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- renovate.json5 | 66 ++++++++++++++++++++++++++++++++------------------ 1 file changed, 43 insertions(+), 23 deletions(-) diff --git a/renovate.json5 b/renovate.json5 index 1e5c92d0..97d32a10 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -1,26 +1,46 @@ { - "extends": ["config:base"], - "packageRules": [ - { - "matchManagers": ["gomod"], - "postUpdateOptions": ["gomodTidy"], - }, - { - "matchManagers": ["gomod"], - "matchUpdateTypes": ["minor", "patch", "pin"], - "automerge": true, - }, - { - "matchManagers": ["gomod"], - "matchUpdateTypes": ["digest"], - "enabled": false, - }, - { - "matchDepTypes": [ - "action" - ], - "pinDigests": true - } + extends: [ + 'config:recommended', + ], + packageRules: [ + { + matchManagers: [ + 'gomod', + ], + postUpdateOptions: [ + 'gomodTidy', + ], + }, + { + matchManagers: [ + 'gomod', + ], + matchUpdateTypes: [ + 'minor', + 'patch', + 'pin', + ], + automerge: true, + }, + { + matchManagers: [ + 'gomod', + ], + matchUpdateTypes: [ + 'digest', + ], + enabled: false, + }, + { + matchDepTypes: [ + 'action', + ], + pinDigests: true, + }, + ], + ignorePaths: [ + '**/testdata/**', + '**/examples/**', + '**/scripts/**', ], - "ignorePaths": ["**/testdata/**", "**/examples/**", "**/scripts/**"] }