From 83b6e69af8598770290f65f3ffbaf71322480d21 Mon Sep 17 00:00:00 2001 From: zacharyburnett Date: Fri, 23 Feb 2024 10:53:48 -0500 Subject: [PATCH] add GitHub Actions to dependabot --- .github/dependabot.yml | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c15fb0cb..e38e0d73 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,8 +1,20 @@ 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: "/" + target-branch: "master" + schedule: + interval: monthly + time: "03:00" + + # Maintain dependencies for pip + - package-ecosystem: "pip" + directory: "/" + target-branch: "master" + schedule: + interval: monthly + time: "03:00" + open-pull-requests-limit: 10 +