From 2f85ded7876884de9ce82837ad28ebead04b55bb Mon Sep 17 00:00:00 2001 From: Ed Page Date: Mon, 8 Jan 2024 15:39:21 -0600 Subject: [PATCH] chore(ci): Fix MSRV:3 updates PR #13266 shows that #13265 worked, so extending it to also cover `MSRV:3` updates. Really, I just forgot... --- .github/renovate.json5 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index b671128de96..8c204be502b 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -28,8 +28,8 @@ 'Cargo.toml$', ], matchStrings: [ - '\bMSRV:3\b.*?(?\\d+\\.\\d+(\\.\\d+)?)', - '(?\\d+\\.\\d+(\\.\\d+)?).*?\bMSRV:3\b', + '\\bMSRV:3\\b.*?(?\\d+\\.\\d+(\\.\\d+)?)', + '(?\\d+\\.\\d+(\\.\\d+)?).*?\\bMSRV:3\\b', ], depNameTemplate: 'MSRV:3', // Support 3 versions of rustc packageNameTemplate: 'rust-lang/rust',