From 29703f1dfaa8d04da1582b40a2c163414421b1d2 Mon Sep 17 00:00:00 2001 From: Sijie Date: Tue, 17 Jun 2025 14:27:33 -0700 Subject: [PATCH] add gha and gradle to dependabot --- .github/dependabot.yml | 33 +++++++++++++++++++++------------ 1 file changed, 21 insertions(+), 12 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2659fed..d36b0f8 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,14 +1,23 @@ version: 2 updates: -- package-ecosystem: docker - directory: "/" - schedule: - interval: weekly - time: '11:00' - open-pull-requests-limit: 10 -- package-ecosystem: pip - directory: "/" - schedule: - interval: daily - time: '11:00' - open-pull-requests-limit: 10 + + # Docker base images + - package-ecosystem: docker + directory: "/" + schedule: + interval: monthly + open-pull-requests-limit: 25 + + # GitHub Actions workflows + - package-ecosystem: "github-actions" + directory: ".github/workflows" + schedule: + interval: monthly + open-pull-requests-limit: 25 + + # Gradle (Java dependencies) + - package-ecosystem: gradle + directory: "/" + schedule: + interval: monthly + open-pull-requests-limit: 25