From bf53753d24d5bcc92016b8974931b9e203c2f800 Mon Sep 17 00:00:00 2001 From: zacharyburnett Date: Thu, 22 Feb 2024 08:38:44 -0500 Subject: [PATCH] add GitHub Actions to dependabot --- .github/dependabot.yml | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index da7c7b4..bc43673 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,8 +1,19 @@ version: 2 updates: -- package-ecosystem: pip - directory: "/" - schedule: - interval: monthly - time: "10:10" - open-pull-requests-limit: 10 + + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + target-branch: "master" + schedule: + interval: "monthly" + time: "10:10" + open-pull-requests-limit: 10 + + # Maintain dependencies for pip + - package-ecosystem: "pip" + directory: "/" + target-branch: "master" + schedule: + interval: "monthly" +