You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/11/21 16:50:36 UTC

[commons-validator] branch master updated: Drop Java 7 build from GH to simplify validation on all other versions.

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

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-validator.git


The following commit(s) were added to refs/heads/master by this push:
     new d3b892f  Drop Java 7 build from GH to simplify validation on all other versions.
d3b892f is described below

commit d3b892fe86a0c8541b7b4c9af49c3420634a1989
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Nov 21 11:50:32 2020 -0500

    Drop Java 7 build from GH to simplify validation on all other versions.
---
 .github/workflows/maven.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index c05e570..f56d6d1 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -24,11 +24,11 @@ jobs:
     continue-on-error: ${{ matrix.experimental }}
     strategy:
       matrix:
-        java: [ 7, 8, 11, 15 ]
+        java: [ 8, 11, 15 ]
         experimental: [false]
         include:
           - java: 16-ea
-            experimental: true        
+            experimental: true
         
     steps:
     - uses: actions/checkout@v2.3.4