Skip to content

Commit

Permalink
revert: upgrade to jdk 17
Browse files Browse the repository at this point in the history
This reverts commit 24ae775.
  • Loading branch information
Silthus committed Sep 21, 2021
1 parent 24ae775 commit 92036bf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:


steps:
- name: Set up JDK 17
- name: Set up JDK 16
uses: actions/setup-java@v1
with:
java-version: 17
java-version: 16

- name: Cache Gradle
id: cache-gradle
Expand Down Expand Up @@ -42,10 +42,10 @@ jobs:
runs-on: ubuntu-18.04

steps:
- name: Set up JDK 17
- name: Set up JDK 16
uses: actions/setup-java@v1
with:
java-version: 17
java-version: 16

- name: Cache Gradle
id: cache-gradle
Expand Down Expand Up @@ -88,10 +88,10 @@ jobs:
runs-on: ubuntu-18.04

steps:
- name: Set up JDK 17
- name: Set up JDK 16
uses: actions/setup-java@v1
with:
java-version: 17
java-version: 16

- name: Set up Node.js v16.x
uses: actions/setup-node@v1
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ if (project.hasProperty("local_script")) {
apply from: file(local_script + "/build.local.gradle")
}

sourceCompatibility = 17
targetCompatibility = 17
sourceCompatibility = 16
targetCompatibility = 16

ext {
mcVersion = project.property("mcVersion")
Expand Down

0 comments on commit 92036bf

Please sign in to comment.