We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af74d54 commit 6967f0fCopy full SHA for 6967f0f
.github/workflows/workflow.yml
@@ -8,13 +8,15 @@ jobs:
8
runs-on: ubuntu-latest
9
10
steps:
11
- - uses: actions/checkout@v1
12
- - name: Set up JDK 1.8
13
- uses: actions/setup-java@v1
+ - uses: actions/checkout@v2
+
+ - uses: actions/setup-java@v1
14
with:
15
- java-version: 1.8
+ java-version: 11
16
17
- name: Assemble
18
run: ./gradlew assemble --warning-mode all
19
20
- name: Check
21
run: ./gradlew check --warning-mode all
22
build.gradle
@@ -1,7 +1,7 @@
1
apply plugin: 'java'
2
3
-sourceCompatibility = 1.8
4
-targetCompatibility = 1.8
+sourceCompatibility = 11
+targetCompatibility = 11
5
6
repositories {
7
mavenCentral()
0 commit comments