From 83b6e69af8598770290f65f3ffbaf71322480d21 Mon Sep 17 00:00:00 2001 From: zacharyburnett Date: Fri, 23 Feb 2024 10:53:48 -0500 Subject: [PATCH 1/2] 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 + From 6c64cfb8fe88288a2604938f806f4ece64b8c326 Mon Sep 17 00:00:00 2001 From: "P. L. Lim" <2090236+pllim@users.noreply.github.com> Date: Fri, 23 Feb 2024 16:43:14 -0500 Subject: [PATCH 2/2] Group them together; consistency --- .github/dependabot.yml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index e38e0d73..920860e8 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,12 +3,17 @@ updates: # Maintain dependencies for GitHub Actions - package-ecosystem: "github-actions" - directory: "/" + directory: ".github/workflows" target-branch: "master" schedule: interval: monthly - time: "03:00" - + time: "03:10" + groups: + actions: + patterns: + - "*" + open-pull-requests-limit: 10 + # Maintain dependencies for pip - package-ecosystem: "pip" directory: "/" @@ -16,5 +21,8 @@ updates: schedule: interval: monthly time: "03:00" + groups: + actions: + patterns: + - "*" open-pull-requests-limit: 10 -