From 0c59eb8bbb74aaed0f33336643c301f9b80ea212 Mon Sep 17 00:00:00 2001 From: Sebastian Rittau Date: Thu, 3 Apr 2025 19:14:05 +0200 Subject: [PATCH] Try to disable Python in github-actions (#13789) --- .github/renovate.json5 | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index abd3023ce..f2daa35c2 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -12,20 +12,14 @@ }, "packageRules": [ { - "groupName": "GitHub Actions", - "matchManagers": ["github-actions"], - "description": "Quarterly update of GitHub Action dependencies", - "schedule": ["every 3 months on the first day of the month"] - }, - { + 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 - groupName: "Python versions", - matchManagers: ["github-actions"], - matchPackageNames: ["python"], - description: "Disable PRs updating Python versions", - enabled: false, + matchPackageNames: ["!python"], + description: "Quarterly update of GitHub Action dependencies", + schedule: ["every 3 months on the first day of the month"] }, { groupName: "most test/lint dependencies",