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/05/30 14:50:41 UTC

[commons-beanutils] branch master updated: Test major Java versions with GitHub actions as documented on https://github.com/actions/setup-java

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-beanutils.git


The following commit(s) were added to refs/heads/master by this push:
     new 13fda9e  Test major Java versions with GitHub actions as documented on https://github.com/actions/setup-java
13fda9e is described below

commit 13fda9e4c67f462a73108ef00d9ecbc55b68a929
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat May 30 10:50:36 2020 -0400

    Test major Java versions with GitHub actions as documented on
    https://github.com/actions/setup-java
---
 .github/workflows/maven.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 2581b1c..d506730 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -23,7 +23,7 @@ jobs:
     runs-on: ubuntu-latest
     strategy:
       matrix:
-        java: [ '1.8', '11.0.4', '12.0.2' ]
+        java: [ 8, 9, 10, 11, 12, 13, 14 ]
         
     steps:
     - uses: actions/checkout@v1