File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed
Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -24,11 +24,11 @@ jobs:
2424
2525 steps :
2626 - uses : actions/checkout@v4
27- - name : Set up JDK 21
27+ - name : Set up JDK 22
2828 uses : actions/setup-java@v4
2929 with :
3030 distribution : ' oracle'
31- java-version : ' 21 '
31+ java-version : ' 22 '
3232
3333 # Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies.
3434 # See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md
Original file line number Diff line number Diff line change @@ -9,12 +9,16 @@ repositories {
99 mavenCentral()
1010}
1111
12+ ext {
13+ graaljsVersion = ' 24.1.1'
14+ }
15+
1216dependencies {
1317 testImplementation platform(' org.junit:junit-bom:5.10.0' )
1418 testImplementation ' org.junit.jupiter:junit-jupiter'
1519 testRuntimeOnly ' com.h2database:h2:2.2.224'
16- testRuntimeOnly ' org.graalvm.js:js:23.0.4 '
17- testImplementation ' org.graalvm.js:js-scriptengine:23.0.4 '
20+ testRuntimeOnly " org.graalvm.js:js:${ graaljsVersion } "
21+ testImplementation " org.graalvm.js:js-scriptengine:${ graaljsVersion } "
1822}
1923
2024test {
Original file line number Diff line number Diff line change 11# Mon Sep 23 00:15:15 CEST 2024
22distributionBase =GRADLE_USER_HOME
33distributionPath =wrapper/dists
4- distributionUrl =https\://services.gradle.org/distributions/gradle-8.5 -bin.zip
4+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.8 -bin.zip
55zipStoreBase =GRADLE_USER_HOME
66zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments