diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 1725e3e..b6f87c8 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -8,13 +8,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: [ 'MSRV.*?(?\\d+\\.\\d+(\\.\\d+)?)', @@ -34,19 +34,13 @@ matchPackageNames: [ 'rust', ], - minimumReleaseAge: '126 days', // 3 releases * 6 weeks per release * 7 days per week + minimumReleaseAge: '126 days', internalChecksFilter: 'strict', - extractVersion: '^(?\\d+\\.\\d+)', // Drop the patch version + extractVersion: '^(?\\d+\\.\\d+)', schedule: [ '* * * * *', ], }, - // 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',