We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5be85da commit 99f2ae3Copy full SHA for 99f2ae3
.github/workflows/gradle.yml
@@ -18,10 +18,10 @@ jobs:
18
19
steps:
20
- uses: actions/checkout@v2
21
- - name: Set up JDK 1.8
+ - name: Set up JDK 11
22
uses: actions/setup-java@v1
23
with:
24
- java-version: 1.8
+ java-version: 11
25
- name: Grant execute permission for gradlew
26
run: chmod +x gradlew
27
- name: Build with Gradle
build.gradle
@@ -48,7 +48,7 @@ subprojects {
48
49
java {
50
toolchain {
51
- languageVersion.set(JavaLanguageVersion.of(8))
+ languageVersion.set(JavaLanguageVersion.of(11))
52
}
53
54
0 commit comments