From bd90980b7560929668c2245ffe8db542bfdbc6a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Thu, 3 Oct 2024 14:54:13 +0200 Subject: [PATCH] CI updates This is done by the automated script named upgrade-c2cciutils-to-1.7 --- .github/renovate.json5 | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 5091ab3..a559c40 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -32,6 +32,13 @@ ], datasourceTemplate: 'github-tags', }, + /** Python version in actions/setup-python action */ + { + fileMatch: ['^\\.github/workflows/.*\\.yaml$'], + matchStrings: [' python-version: [\'"](?[0-9\\.]+)[\'"]'], + datasourceTemplate: 'python-version', + depNameTemplate: 'python', + }, ], packageRules: [ /** Auto merge the dev dependency update */ @@ -75,5 +82,11 @@ groupName: 'CI dependencies', automerge: true, }, + /** Ungroup Python dependencies */ + { + matchDepNames: ['python'], + groupName: 'Python', + versioning: 'regex:^(?\\d+)\\.(?\\d+)$', + }, ], }