You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by su...@apache.org on 2022/10/03 14:55:17 UTC

[groovy] branch master updated: Support maintaining gradle dependencies by dependabot

This is an automated email from the ASF dual-hosted git repository.

sunlan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/master by this push:
     new 6991e67056 Support maintaining gradle dependencies by dependabot
6991e67056 is described below

commit 6991e67056081c63ffc5e0c54d2331708a05e968
Author: Daniel Sun <su...@apache.org>
AuthorDate: Mon Oct 3 22:54:58 2022 +0800

    Support maintaining gradle dependencies by dependabot
---
 .github/dependabot.yml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index b24e7d1969..e10c26416b 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -15,7 +15,13 @@
 
 version: 2
 updates:
+  # Maintain dependencies for GitHub Actions
   - package-ecosystem: "github-actions"
     directory: "/"
     schedule:
       interval: "weekly"
+  # Maintain dependencies for Gradle
+  - package-ecosystem: "gradle"
+    directory: "/"
+    schedule:
+      interval: "daily"