From 0d981592790a0ff2340601c5f4b687c1bedfb9f2 Mon Sep 17 00:00:00 2001 From: "Junjie(Jack) Chen" Date: Wed, 29 Nov 2023 16:50:27 -0500 Subject: [PATCH] Add Java 21 in the CI build (#293) --- .github/workflows/ci.yml | 8 ++++---- pom.xml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 477f6497f..53ad5d8da 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,14 +11,14 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - javaversion: ["8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20"] + javaversion: ["8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21"] steps: - uses: actions/checkout@v3 - name: Set up JDK for compilation uses: actions/setup-java@v3 with: distribution: "zulu" - java-version: "20" # Always use the latest JDK for building + java-version: "21" # Always use the latest JDK for building - name: Load Maven dependencies cache uses: actions/cache@v3 with: @@ -45,7 +45,7 @@ jobs: uses: actions/setup-java@v3 with: distribution: "zulu" - java-version: "20" # Always use the latest JDK for building + java-version: "21" # Always use the latest JDK for building - name: Load Maven dependencies cache uses: actions/cache@v3 with: @@ -101,7 +101,7 @@ jobs: uses: actions/setup-java@v3 with: distribution: "zulu" - java-version: "20" # Always use the latest JDK for building + java-version: "21" # Always use the latest JDK for building - name: Load Maven dependencies cache uses: actions/cache@v3 with: diff --git a/pom.xml b/pom.xml index b49d6ec24..13ef32f88 100644 --- a/pom.xml +++ b/pom.xml @@ -80,7 +80,7 @@ org.projectlombok lombok - 1.18.26 + 1.18.30 provided @@ -248,7 +248,7 @@ org.projectlombok lombok - 1.18.24 + 1.18.30