Skip to content

Commit 75ddefa

Browse files
fix: bump deps
1 parent 331f534 commit 75ddefa

5 files changed

Lines changed: 263 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ jobs:
66
steps:
77
- name: Checkout
88
uses: actions/checkout@v4
9-
- name: Set up JDK 20
9+
- name: Set up JDK 18
1010
uses: actions/setup-java@v3
1111
with:
1212
distribution: 'oracle'
13-
java-version: 20
13+
java-version: 18
1414
- name: Install dependencies, run tests, and collect coverage
1515
run: gradle build
1616
- name: Upload coverage to Codecov

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@ version '1.0'
44
apply plugin: 'java'
55
apply plugin: 'jacoco'
66

7-
sourceCompatibility = 20
8-
targetCompatibility = 20
7+
sourceCompatibility = 18
8+
targetCompatibility = 18
99

1010
repositories {
1111
mavenCentral()
1212
}
1313

1414
dependencies {
15-
testImplementation "junit:junit:4.13"
15+
testImplementation "junit:junit:4.13.2"
1616
}
1717

1818
jacocoTestReport {
1919
reports {
20-
xml.required true
21-
html.required false
20+
xml.required = true
21+
html.required = false
2222
}
2323
}
2424

gradle/wrapper/gradle-wrapper.jar

62.2 KB
Binary file not shown.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
6+
zipStoreBase=GRADLE_USER_HOME
7+
zipStorePath=wrapper/dists

gradlew

Lines changed: 249 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)