You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2021/08/16 06:23:39 UTC

[maven-shade-plugin] branch master updated: run gh action with more jdk (#111)

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

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-shade-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new b34dc80  run gh action with more jdk (#111)
b34dc80 is described below

commit b34dc8091398d593b9193ecfc36c80ad3150b1fc
Author: Olivier Lamy <ol...@apache.org>
AuthorDate: Mon Aug 16 16:23:33 2021 +1000

    run gh action with more jdk (#111)
    
    Signed-off-by: Olivier Lamy <ol...@apache.org>
---
 .github/workflows/maven.yml | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 7228b9c..e192fa5 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -24,6 +24,8 @@ jobs:
     strategy:
       matrix:
         os: [ubuntu-latest, windows-latest, macOS-latest]
+        java: [8, 11, 16, 17-ea]
+        jdk: [adopt, zulu]
       fail-fast: false
 
     runs-on: ${{ matrix.os }}
@@ -43,8 +45,8 @@ jobs:
       - name: Set up JDK 1.8
         uses: actions/setup-java@v2
         with:
-          java-version: '8'
-          distribution: 'adopt'
+          distribution: ${{ matrix.jdk }}
+          java-version: ${{ matrix.java }}
 
       - name: Build with Maven
         run: mvn clean verify -P run-its -e -B -V