From 604b81fb82bc28142955083d95dda5c4ee546ce0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 7 May 2025 17:46:28 +0000 Subject: [PATCH] chore(config): migrate config .github/renovate.json5 --- .github/renovate.json5 | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 7ab13b9..f54a95e 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -9,13 +9,13 @@ customManagers: [ { customType: 'regex', - fileMatch: [ - '^rust-toolchain\\.toml$', - 'Cargo.toml$', - 'clippy.toml$', - '\\.clippy.toml$', - '^\\.github/workflows/ci.yml$', - '^\\.github/workflows/rust-next.yml$', + managerFilePatterns: [ + '/^rust-toolchain\\.toml$/', + '/Cargo.toml$/', + '/clippy.toml$/', + '/\\.clippy.toml$/', + '/^\\.github/workflows/ci.yml$/', + '/^\\.github/workflows/rust-next.yml$/', ], matchStrings: [ 'STABLE.*?(?\\d+\\.\\d+(\\.\\d+)?)', @@ -35,18 +35,12 @@ matchDepNames: [ 'STABLE', ], - extractVersion: '^(?\\d+\\.\\d+)', // Drop the patch version + extractVersion: '^(?\\d+\\.\\d+)', schedule: [ '* * * * *', ], automerge: true, }, - // Goals: - // - Keep version reqs low, ignoring compatible normal/build dependencies - // - Take advantage of latest dev-dependencies - // - Rollup safe upgrades to reduce CI runner load - // - Help keep number of versions down by always using latest breaking change - // - Have lockfile and manifest in-sync { matchManagers: [ 'cargo',