From 31194458ce8835591c884d88a5a570fe5907bfe0 Mon Sep 17 00:00:00 2001 From: Jimisola Laursen Date: Sun, 1 Mar 2026 18:10:05 +0100 Subject: [PATCH 1/2] fix(conf): scope Python version constraint to github-actions manager The previous matchPackageNames: ["python"] rule had no manager context, so it may not have matched the uses-with dep tracked by the github-actions manager. Also tightened allowedVersions from "<3.14" to "<=3.13" to avoid semver pre-release ambiguity with tags like 3.14.0-. --- .github/renovate.json5 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index d7d3699..098d5e4 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -44,8 +44,9 @@ // ===================================================== { + matchManagers: ["github-actions"], matchPackageNames: ["python"], - allowedVersions: "<3.14", + allowedVersions: "<=3.13", }, // ===================================================== From 70235e14c555ea94dcb3e1bcab826e3af2944ffe Mon Sep 17 00:00:00 2001 From: Jimisola Laursen Date: Sun, 1 Mar 2026 18:12:47 +0100 Subject: [PATCH 2/2] fix(conf): remove manager restriction from Python version constraint MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The matchManagers: ["github-actions"] scope was too narrow — the constraint should apply to all managers (pyproject.toml, .python-version, workflows, etc.). The real fix was tightening allowedVersions from "<3.14" to "<=3.13" to avoid semver pre-release ambiguity with tags like 3.14.0-. --- .github/renovate.json5 | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 098d5e4..263b9a5 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -44,7 +44,6 @@ // ===================================================== { - matchManagers: ["github-actions"], matchPackageNames: ["python"], allowedVersions: "<=3.13", },