Skip to content

Commit 7cb7329

Browse files
update to j21
1 parent 4853bdf commit 7cb7329

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v6
15-
- name: Set up JDK 17
15+
- name: Set up JDK 21
1616
uses: actions/setup-java@v5
1717
with:
1818
distribution: 'temurin'
19-
java-version: 17
19+
java-version: 21
2020
- name: Build
2121
run: ./gradlew clean build vscodeExtension

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ configure(subprojects.findAll { it.name.startsWith('org.xtext') }) {
3535
version = '1.0.0-SNAPSHOT'
3636

3737
java {
38-
sourceCompatibility = JavaVersion.VERSION_17
39-
targetCompatibility = JavaVersion.VERSION_17
38+
sourceCompatibility = JavaVersion.VERSION_21
39+
targetCompatibility = JavaVersion.VERSION_21
4040
}
4141

4242
configurations.all {

0 commit comments

Comments
 (0)