From 7c74e08c7ee64ac76bd2d944e71d027884c5aabc Mon Sep 17 00:00:00 2001 From: Jo <10510431+j178@users.noreply.github.com> Date: Thu, 22 Jan 2026 14:40:49 +0800 Subject: [PATCH] Fix file patterns of maturin in renovate.json5 (#17655) `build-binaries.yml` was renamed to `build-release-binaries.yaml` in #17388. --- .github/renovate.json5 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index e73668855..7fd426822 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -134,7 +134,9 @@ // Maturin version used in maturin-action { customType: "regex", - managerFilePatterns: ["/.github/workflows/build-binaries\\.yml$/"], + managerFilePatterns: [ + "/.github/workflows/build-release-binaries\\.yml$/", + ], matchStrings: ["maturin-version: (?v\\d+\\.\\d+\\.\\d+)"], depNameTemplate: "maturin", packageNameTemplate: "PyO3/maturin",