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 2d81539 commit 4f0a400Copy full SHA for 4f0a400
.github/workflows/workflow.yml
@@ -10,13 +10,13 @@ jobs:
10
steps:
11
- uses: actions/checkout@v2
12
13
- - uses: actions/setup-java@v1
+ - uses: actions/setup-java@v3
14
with:
15
- java-version: 17
+ distribution: 'zulu'
16
+ java-version: 21
17
18
- name: Assemble
19
run: ./gradlew assemble --warning-mode all
20
21
- name: Check
22
run: ./gradlew check --warning-mode all
-
build.gradle
@@ -1,7 +1,7 @@
1
apply plugin: 'java'
2
3
-sourceCompatibility = 17
4
-targetCompatibility = 17
+sourceCompatibility = 21
+targetCompatibility = 21
5
6
repositories {
7
mavenCentral()
0 commit comments