From 28f6615388b6cab1bfd2954f077b468a95152e55 Mon Sep 17 00:00:00 2001 From: Sebastian Rittau Date: Thu, 3 Apr 2025 19:22:54 +0200 Subject: [PATCH] renovate: Try disabling Python updates (try #3) --- .github/renovate.json5 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index f2daa35c2a79..5b0e2d1e7956 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -7,6 +7,10 @@ "semanticCommits": "disabled", "separateMajorMinor": false, "prHourlyLimit": 10, + // This package rule disables updates for `actions/setup-python` Python versions: + // it's better to do these manually as there's often a reason why we can't use + // the latest Python version in CI for a specific job + ignoreDeps: ["python"], "pre-commit": { "enabled": true }, @@ -14,10 +18,6 @@ { groupName: "GitHub Actions", matchManagers: ["github-actions"], - // This package rule disables updates for `actions/setup-python` Python versions: - // it's better to do these manually as there's often a reason why we can't use - // the latest Python version in CI for a specific job - matchPackageNames: ["!python"], description: "Quarterly update of GitHub Action dependencies", schedule: ["every 3 months on the first day of the month"] },