You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sl...@apache.org on 2020/08/18 12:17:16 UTC

[maven-script-interpreter] branch master updated: Dependabot - exclude commons-io updates

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

slachiewicz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-script-interpreter.git


The following commit(s) were added to refs/heads/master by this push:
     new 960f5f7  Dependabot - exclude commons-io updates
960f5f7 is described below

commit 960f5f7dc56b40cb63df8c2cd54d119d5a6813e1
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Tue Aug 18 14:15:43 2020 +0200

    Dependabot - exclude commons-io updates
    
    - 2.7 requires Java 8
---
 .github/dependabot.yml | 18 +++++++++++-------
 1 file changed, 11 insertions(+), 7 deletions(-)

diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index 4f281dd..192251e 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -17,15 +17,19 @@
 # Please see the documentation for all configuration options:
 # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
 #
-version: 2
 updates:
-- package-ecosystem: maven
-  directory: "/"
-  schedule:
-    interval: daily
-    time: '04:00'
-  open-pull-requests-limit: 10
+  - package-ecosystem: "maven"
+    directory: "/"
+    schedule:
+      interval: "daily"
+  - package-ecosystem: "github-actions"
+    directory: "/"
+    schedule:
+      interval: "daily"
   ignore:
     - dependency-name: org.codehaus.groovy:groovy
       versions:
       - ">= 2.5"
+    - dependency-name: commons-io:commons-io
+      versions:
+        - ">= 2.7"
\ No newline at end of file