Skip to content

Commit

Permalink
Make Github Actions use Java 17
Browse files Browse the repository at this point in the history
- Java 17 is the minimum required version by Loom 0.11
  • Loading branch information
PepperCode1 committed Feb 21, 2022
1 parent 74390cf commit 9b4838a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9b4838a

Please sign in to comment.