diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c15fb0c..920860e 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,8 +1,28 @@ version: 2 updates: -- package-ecosystem: pip - directory: "/" - schedule: - interval: monthly - time: "03:00" - open-pull-requests-limit: 10 + + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: ".github/workflows" + target-branch: "master" + schedule: + interval: monthly + time: "03:10" + groups: + actions: + patterns: + - "*" + open-pull-requests-limit: 10 + + # Maintain dependencies for pip + - package-ecosystem: "pip" + directory: "/" + target-branch: "master" + schedule: + interval: monthly + time: "03:00" + groups: + actions: + patterns: + - "*" + open-pull-requests-limit: 10