diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 63760a7..d8f0971 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 */ @@ -62,5 +69,10 @@ groupName: 'CI dependencies', automerge: true, }, + /** Ungroup Python dependencies */ + { + matchDepNames: ['python'], + groupName: 'Python', + }, ], }