diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 93d958c4..1ef46664 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -33,6 +33,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: [ /** Support the 4 parts of shellcheck-py version with a v prefix */ @@ -106,5 +113,10 @@ matchBaseBranches: ['/^[0-9]+\\.[0-9]+$/'], minimumReleaseAge: '7 days', }, + /** Ungroup Python dependencies */ + { + matchDepNames: ['python'], + groupName: 'Python', + }, ], }