From 9b4838afd23b54770393aacac501569f9627b7f8 Mon Sep 17 00:00:00 2001 From: PepperCode1 <44146161+PepperCode1@users.noreply.github.com> Date: Sun, 20 Feb 2022 21:15:01 -0800 Subject: [PATCH] Make Github Actions use Java 17 - Java 17 is the minimum required version by Loom 0.11 --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8d9c05f9..c281b75c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,11 +9,11 @@ jobs: - uses: actions/checkout@v2 - name: Validate Gradle wrapper uses: gradle/wrapper-validation-action@v1 - - name: Set up JDK 16 + - name: Set up JDK 17 uses: actions/setup-java@v2 with: - distribution: adopt - java-version: 16 + distribution: temurin + java-version: 17 check-latest: true - name: Build artifacts run: ./gradlew build --stacktrace