You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2021/07/30 06:22:51 UTC

[isis] branch master updated: ISIS-2662: CI: use JDK 17-ea

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

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new e1f3cda  ISIS-2662: CI: use JDK 17-ea
e1f3cda is described below

commit e1f3cda2881ac6b9a58d79f4b36efa15355582fb
Author: Andi Huber <ah...@apache.org>
AuthorDate: Fri Jul 30 08:22:38 2021 +0200

    ISIS-2662: CI: use JDK 17-ea
---
 .github/workflows/ci-build-artifacts-no-push-gradle.yml | 6 +++---
 .github/workflows/ci-build-artifacts-no-push-maven.yml  | 6 +++---
 .github/workflows/ci-build-site-no-push.yml             | 6 +++---
 3 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/.github/workflows/ci-build-artifacts-no-push-gradle.yml b/.github/workflows/ci-build-artifacts-no-push-gradle.yml
index 71d4984..8ce26a2 100644
--- a/.github/workflows/ci-build-artifacts-no-push-gradle.yml
+++ b/.github/workflows/ci-build-artifacts-no-push-gradle.yml
@@ -18,7 +18,7 @@ jobs:
     runs-on: ubuntu-latest
     env:
       # to be shared among all steps of this job
-      BASELINE: 2.0.0-M2
+      BASELINE: 2.0.0-M5
       PROJECT_ROOT_PATH: ${{ github.workspace }}
       CI_SCRIPTS_PATH: ${{ github.workspace }}/scripts/ci
       
@@ -30,11 +30,11 @@ jobs:
     steps:
     - uses: actions/checkout@v2.3.4
     
-    - name: Set up JDK 11
+    - name: Set up JDK 17-ea
       uses: actions/setup-java@v2
       with:
         distribution: 'zulu'
-        java-version: 11
+        java-version: 17-ea
     
     - name: Set up Gradle and print Version
       uses: eskatos/gradle-command-action@v1.3.3
diff --git a/.github/workflows/ci-build-artifacts-no-push-maven.yml b/.github/workflows/ci-build-artifacts-no-push-maven.yml
index 300cbb7..601ce4b 100644
--- a/.github/workflows/ci-build-artifacts-no-push-maven.yml
+++ b/.github/workflows/ci-build-artifacts-no-push-maven.yml
@@ -14,7 +14,7 @@ jobs:
     runs-on: ubuntu-latest
     env:
       # to be shared among all steps of this job
-      BASELINE: 2.0.0-M2
+      BASELINE: 2.0.0-M5
       PROJECT_ROOT_PATH: ${{ github.workspace }}
       CI_SCRIPTS_PATH: ${{ github.workspace }}/scripts/ci
       
@@ -30,11 +30,11 @@ jobs:
     steps:
     - uses: actions/checkout@v2.3.4
     
-    - name: Set up JDK 11
+    - name: Set up JDK 17-ea
       uses: actions/setup-java@v2
       with:
         distribution: 'zulu'
-        java-version: 11
+        java-version: 17-ea
     
     - name: Print Maven Version
       run: mvn --version
diff --git a/.github/workflows/ci-build-site-no-push.yml b/.github/workflows/ci-build-site-no-push.yml
index 3380be9..0058c58 100644
--- a/.github/workflows/ci-build-site-no-push.yml
+++ b/.github/workflows/ci-build-site-no-push.yml
@@ -14,7 +14,7 @@ jobs:
     runs-on: ubuntu-latest
     env:
       # to be shared among all steps of this job
-      BASELINE: 2.0.0-M2
+      BASELINE: 2.0.0-M5
       PROJECT_ROOT_PATH: ${{ github.workspace }}
       CI_SCRIPTS_PATH: ${{ github.workspace }}/scripts/ci
       ANTORA_PLAYBOOKS_PATH: ${{ github.workspace }}/antora/playbooks
@@ -29,11 +29,11 @@ jobs:
     steps:
     - uses: actions/checkout@v2.3.4
 
-    - name: Set up JDK 11
+    - name: Set up JDK 17-ea
       uses: actions/setup-java@v2
       with:
         distribution: 'zulu'
-        java-version: 11
+        java-version: 17
 
     - name: Setup Script Environment
       shell: bash