File tree Expand file tree Collapse file tree 2 files changed +11
-9
lines changed
Expand file tree Collapse file tree 2 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 88 - main
99jobs :
1010 gradle-check :
11- runs-on : ubuntu-22 .04
11+ runs-on : ubuntu-24 .04
1212 steps :
13- - uses : actions/checkout@v3
14- - uses : actions/setup-java@v3
13+ - uses : actions/checkout@v5
14+ - uses : actions/setup-java@v5
1515 with :
1616 distribution : ' temurin'
1717 java-version : ' 21'
18- - uses : gradle/gradle-build-action@v2
19- with :
20- arguments : check --info --no-daemon --stacktrace
18+ - name : Setup Gradle
19+ uses : gradle/actions/setup-gradle@v5
20+ - name : Run Gradle Check
21+ run : |
22+ ./gradlew check --no-daemon --stacktrace
Original file line number Diff line number Diff line change 1616
1717plugins {
1818 id(" java" )
19- id(" com.github.johnrengelman. shadow" ) version " 8.1.1 "
19+ id(" com.gradleup. shadow" ) version " 9.2.2 "
2020}
2121
2222allprojects {
@@ -47,8 +47,8 @@ tasks.register("buildAll") {
4747defaultTasks(" buildAll" )
4848
4949dependencies {
50- testImplementation(platform( " org.junit:junit-bom:5.10.2 " ) )
51- testImplementation (" org.junit.jupiter :junit-jupiter " )
50+ testImplementation(" org.junit.jupiter :junit-jupiter:6.0.0 " )
51+ testRuntimeOnly (" org.junit.platform :junit-platform-launcher " )
5252
5353 testImplementation(libs.zstd.jni)
5454
You can’t perform that action at this time.
0 commit comments