Skip to content

Commit 54e8bfd

Browse files
build(deps): Upgrade deps
- JDK - Gradle - JUnit 5
1 parent 6a636fa commit 54e8bfd

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/build-gradle-project.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v3
11-
- name: Set up JDK 17
11+
- name: Set up JDK
1212
uses: actions/setup-java@v3
1313
with:
14-
java-version: '17'
14+
java-version: '21'
1515
distribution: 'temurin'
1616
- name: Build with Gradle
1717
uses: gradle/gradle-build-action@v2.8.0

build.gradle.kts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,24 @@ import org.gradle.api.tasks.testing.logging.TestLogEvent
22

33
plugins {
44
java
5-
id("com.diffplug.spotless") version "7.0.2"
6-
id("com.github.ben-manes.versions") version "0.52.0"
5+
id("com.diffplug.spotless") version "8.2.1"
6+
id("com.github.ben-manes.versions") version "0.53.0"
77
}
88

99
repositories {
1010
mavenCentral()
1111
}
1212

1313
java {
14-
sourceCompatibility = JavaVersion.VERSION_17
15-
targetCompatibility = JavaVersion.VERSION_17
14+
sourceCompatibility = JavaVersion.VERSION_21
15+
targetCompatibility = JavaVersion.VERSION_21
1616
}
1717

1818
dependencies {
19-
implementation("org.junit.jupiter:junit-jupiter-api:5.11.0")
20-
testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.0")
21-
22-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.0")
19+
implementation("org.junit.jupiter:junit-jupiter-api:5.14.2")
20+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.14.2")
21+
testImplementation("org.junit.platform:junit-platform-launcher:1.14.2")
22+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.14.2")
2323
}
2424

2525
spotless {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.0-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)