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/09/16 15:55:30 UTC

[isis] branch master updated: ISIS-2445: CI switch back to JDK 16

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 7a596f0  ISIS-2445: CI switch back to JDK 16
7a596f0 is described below

commit 7a596f0b18fec44306a3111e38f5d16c9e23fd98
Author: Andi Huber <ah...@apache.org>
AuthorDate: Thu Sep 16 17:55:21 2021 +0200

    ISIS-2445: CI switch back to JDK 16
    
    it seems we have to wait for lombok release 1.18.22
---
 .github/workflows/ci-build-artifacts-no-push-gradle.yml | 4 ++--
 .github/workflows/ci-build-artifacts-no-push-maven.yml  | 4 ++--
 .github/workflows/ci-build-site-no-push.yml             | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/.github/workflows/ci-build-artifacts-no-push-gradle.yml b/.github/workflows/ci-build-artifacts-no-push-gradle.yml
index d86e822..5400e39 100644
--- a/.github/workflows/ci-build-artifacts-no-push-gradle.yml
+++ b/.github/workflows/ci-build-artifacts-no-push-gradle.yml
@@ -30,11 +30,11 @@ jobs:
     steps:
     - uses: actions/checkout@v2.3.4
     
-    - name: Set up JDK 17
+    - name: Set up JDK 16 (need lombok 1.18.22 before switching to 17)
       uses: actions/setup-java@v2
       with:
         distribution: 'zulu'
-        java-version: 17
+        java-version: 16
     
     - name: Set up Gradle and print Version
       uses: eskatos/gradle-command-action@v1.5.1
diff --git a/.github/workflows/ci-build-artifacts-no-push-maven.yml b/.github/workflows/ci-build-artifacts-no-push-maven.yml
index 5b00a46..b2ff27f 100644
--- a/.github/workflows/ci-build-artifacts-no-push-maven.yml
+++ b/.github/workflows/ci-build-artifacts-no-push-maven.yml
@@ -30,11 +30,11 @@ jobs:
     steps:
     - uses: actions/checkout@v2.3.4
     
-    - name: Set up JDK 17
+    - name: Set up JDK 16 (need lombok 1.18.22 before switching to 17)
       uses: actions/setup-java@v2
       with:
         distribution: 'zulu'
-        java-version: 17
+        java-version: 16
     
     - 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 0f80ec8..5e38ef4 100644
--- a/.github/workflows/ci-build-site-no-push.yml
+++ b/.github/workflows/ci-build-site-no-push.yml
@@ -29,11 +29,11 @@ jobs:
     steps:
     - uses: actions/checkout@v2.3.4
 
-    - name: Set up JDK 17
+    - name: Set up JDK 16 (need lombok 1.18.22 before switching to 17)
       uses: actions/setup-java@v2
       with:
         distribution: 'zulu'
-        java-version: 17
+        java-version: 16
 
     - name: Setup Script Environment
       shell: bash