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/05/02 05:02:39 UTC

[maven-compiler-plugin] branch master updated: add dependabot and gh actions with more jdks

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-compiler-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new e2da4f8  add dependabot and gh actions with more jdks
e2da4f8 is described below

commit e2da4f807366c781d0cad66c022a6bd58c63ef3d
Author: olivier lamy <ol...@apache.org>
AuthorDate: Sun May 2 15:02:26 2021 +1000

    add dependabot and gh actions with more jdks
    
    Signed-off-by: olivier lamy <ol...@apache.org>
---
 .github/dependabot.yml      | 10 ++++++++++
 .github/workflows/maven.yml |  6 ++++--
 2 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 0000000..b76b895
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,10 @@
+version: 2
+updates:
+  - package-ecosystem: "maven"
+    directory: "/"
+    schedule:
+      interval: "daily"
+  - package-ecosystem: "github-actions"
+    directory: "/"
+    schedule:
+      interval: "daily"
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index d5e65c5..edf9256 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -25,7 +25,8 @@ jobs:
     strategy:
       matrix:
         os: [ubuntu-latest,windows-latest, macOS-latest]
-        java: [8, 11, 14, 15]
+        java: [8, 11, 14, 15, 16, 17-ea]
+        jdk: [adopt, zulu]
       fail-fast: false
 
     runs-on: ${{ matrix.os }}
@@ -44,8 +45,9 @@ jobs:
             maven-${{ matrix.os }}-
 
       - name: Set up JDK
-        uses: actions/setup-java@v1
+        uses: actions/setup-java@v2
         with:
+          distribution: ${{ matrix.jdk }}
           java-version: ${{ matrix.java }}
 
       - name: Build with Maven