File tree Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 16
16
uses : actions/checkout@v4
17
17
18
18
- name : Setup Java 21
19
- uses : actions/setup-java@v3
19
+ uses : actions/setup-java@v4
20
20
with :
21
21
distribution : corretto
22
22
java-version : 21
28
28
run : ./gradlew projects clean build --no-daemon --refresh-dependencies
29
29
30
30
- name : Upload coverage to Codecov
31
- uses : codecov/codecov-action@v3
31
+ uses : codecov/codecov-action@v4
32
32
with :
33
33
flags : unit-tests-${{ matrix.os }}
34
34
fail_ci_if_error : true
43
43
uses : actions/checkout@v4
44
44
45
45
- name : Setup Java 21
46
- uses : actions/setup-java@v3
46
+ uses : actions/setup-java@v4
47
47
with :
48
48
distribution : corretto
49
49
java-version : 21
55
55
run : ./gradlew projects clean integrationTest --no-daemon --refresh-dependencies
56
56
57
57
- name : Upload coverage to Codecov
58
- uses : codecov/codecov-action@v3
58
+ uses : codecov/codecov-action@v4
59
59
with :
60
60
flags : integration-tests-${{ matrix.os }}
61
61
fail_ci_if_error : true
72
72
73
73
- name : Bump version
74
74
id : version
75
- uses : paulhatch/semantic-version@v5.3 .0
75
+ uses : paulhatch/semantic-version@v5.4 .0
76
76
77
77
- name : Create GitHub tag and release
78
78
uses : softprops/action-gh-release@v0.1.15
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ logger.quiet("Gradle version: ${gradle.gradleVersion}")
11
11
12
12
plugins {
13
13
id(" java-library" )
14
- id(" com.diffplug.gradle.spotless" ) version " 6.22 .0" apply (false )
14
+ id(" com.diffplug.gradle.spotless" ) version " 6.24 .0" apply (false )
15
15
id(" com.github.spotbugs" ) version " 5.1.5" apply (false )
16
16
id(" com.asarkar.gradle.build-time-tracker" ) version " 4.3.0"
17
17
}
@@ -101,15 +101,15 @@ subprojects {
101
101
}
102
102
103
103
dependencies {
104
- val log4jVersion = " 2.20.0 "
105
- val guavaVersion = " 32.1.3 -jre"
104
+ val log4jVersion = " 2.22.1 "
105
+ val guavaVersion = " 33.0.0 -jre"
106
106
implementation(" org.apache.logging.log4j:log4j-core:$log4jVersion " )
107
- implementation(" com.github.spotbugs:spotbugs-annotations:4.8.0 " )
107
+ implementation(" com.github.spotbugs:spotbugs-annotations:4.8.3 " )
108
108
implementation(" com.google.guava:guava:$guavaVersion " )
109
109
110
- val junitVersion = " 5.10.0 "
111
- val truthVersion = " 1.1.5 "
112
- val mockitoVersion = " 5.6 .0"
110
+ val junitVersion = " 5.10.1 "
111
+ val truthVersion = " 1.4.0 "
112
+ val mockitoVersion = " 5.10 .0"
113
113
testImplementation(" org.junit.jupiter:junit-jupiter:$junitVersion " )
114
114
testImplementation(" com.google.truth:truth:$truthVersion " )
115
115
testImplementation(" com.google.truth.extensions:truth-java8-extension:$truthVersion " )
You can’t perform that action at this time.
0 commit comments