Skip to content

Commit dfd2391

Browse files
Update all dependencies
1 parent 662f996 commit dfd2391

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/checkout@v4
1717

1818
- name: Setup Java 21
19-
uses: actions/setup-java@v3
19+
uses: actions/setup-java@v4
2020
with:
2121
distribution: corretto
2222
java-version: 21
@@ -28,7 +28,7 @@ jobs:
2828
run: ./gradlew projects clean build --no-daemon --refresh-dependencies
2929

3030
- name: Upload coverage to Codecov
31-
uses: codecov/codecov-action@v3
31+
uses: codecov/codecov-action@v4
3232
with:
3333
flags: unit-tests-${{ matrix.os }}
3434
fail_ci_if_error: true
@@ -43,7 +43,7 @@ jobs:
4343
uses: actions/checkout@v4
4444

4545
- name: Setup Java 21
46-
uses: actions/setup-java@v3
46+
uses: actions/setup-java@v4
4747
with:
4848
distribution: corretto
4949
java-version: 21
@@ -55,7 +55,7 @@ jobs:
5555
run: ./gradlew projects clean integrationTest --no-daemon --refresh-dependencies
5656

5757
- name: Upload coverage to Codecov
58-
uses: codecov/codecov-action@v3
58+
uses: codecov/codecov-action@v4
5959
with:
6060
flags: integration-tests-${{ matrix.os }}
6161
fail_ci_if_error: true
@@ -72,10 +72,10 @@ jobs:
7272

7373
- name: Bump version
7474
id: version
75-
uses: paulhatch/semantic-version@v5.3.0
75+
uses: paulhatch/semantic-version@v5.4.0
7676

7777
- name: Create GitHub tag and release
78-
uses: softprops/action-gh-release@v0.1.15
78+
uses: softprops/action-gh-release@v2.0.4
7979
with:
8080
tag_name: ${{ steps.version.outputs.version_tag }}
8181
generate_release_notes: true

build.gradle.kts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ logger.quiet("Gradle version: ${gradle.gradleVersion}")
1111

1212
plugins {
1313
id("java-library")
14-
id("com.diffplug.gradle.spotless") version "6.22.0" apply (false)
15-
id("com.github.spotbugs") version "5.1.5" apply (false)
14+
id("com.diffplug.gradle.spotless") version "6.25.0" apply (false)
15+
id("com.github.spotbugs") version "6.0.8" apply (false)
1616
id("com.asarkar.gradle.build-time-tracker") version "4.3.0"
1717
}
1818

@@ -101,15 +101,15 @@ subprojects {
101101
}
102102

103103
dependencies {
104-
val log4jVersion = "2.20.0"
105-
val guavaVersion = "32.1.3-jre"
104+
val log4jVersion = "2.23.1"
105+
val guavaVersion = "33.1.0-jre"
106106
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")
108108
implementation("com.google.guava:guava:$guavaVersion")
109109

110-
val junitVersion = "5.10.0"
111-
val truthVersion = "1.1.5"
112-
val mockitoVersion = "5.6.0"
110+
val junitVersion = "5.10.2"
111+
val truthVersion = "1.4.2"
112+
val mockitoVersion = "5.11.0"
113113
testImplementation("org.junit.jupiter:junit-jupiter:$junitVersion")
114114
testImplementation("com.google.truth:truth:$truthVersion")
115115
testImplementation("com.google.truth.extensions:truth-java8-extension:$truthVersion")

0 commit comments

Comments
 (0)