From f7620d6cb0f430f910a1e6541f5d6af8d429df15 Mon Sep 17 00:00:00 2001 From: Lao Yang <lercy620@gmail.com> Date: Mon, 19 Aug 2024 17:21:31 +0800 Subject: [PATCH] Update JDK version to 18.0.1.1 in GitHub Actions --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0458b59..5f11445 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,8 @@ jobs: - name: Set up JDK uses: actions/setup-java@v2 with: - java-version: '18' + distribution: 'temurin' + java-version: '18.0.1.1' - name: Build with Maven run: mvn clean install