From 19af4209f7336ad8d56d252e7b0e9b86acadd2b8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 31 May 2024 21:42:03 +1200 Subject: [PATCH] Update all dependencies (#242) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/build.yml | 2 +- build.gradle.kts | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 590130e..20b9b4d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -77,7 +77,7 @@ jobs: uses: paulhatch/semantic-version@v5.4.0 - name: Create GitHub tag and release - uses: softprops/action-gh-release@v2.0.4 + uses: softprops/action-gh-release@v2.0.5 with: tag_name: ${{ steps.version.outputs.version_tag }} generate_release_notes: true diff --git a/build.gradle.kts b/build.gradle.kts index 13cf98d..f1cc80a 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -12,7 +12,7 @@ logger.quiet("Gradle version: ${gradle.gradleVersion}") plugins { id("java-library") id("com.diffplug.gradle.spotless") version "6.25.0" apply (false) - id("com.github.spotbugs") version "6.0.12" apply (false) + id("com.github.spotbugs") version "6.0.15" apply (false) id("com.asarkar.gradle.build-time-tracker") version "4.3.0" } @@ -102,14 +102,14 @@ subprojects { dependencies { val log4jVersion = "2.23.1" - val guavaVersion = "33.1.0-jre" + val guavaVersion = "33.2.0-jre" implementation("org.apache.logging.log4j:log4j-core:$log4jVersion") - implementation("com.github.spotbugs:spotbugs-annotations:4.8.4") + implementation("com.github.spotbugs:spotbugs-annotations:4.8.5") implementation("com.google.guava:guava:$guavaVersion") val junitVersion = "5.10.2" val truthVersion = "1.4.2" - val mockitoVersion = "5.11.0" + val mockitoVersion = "5.12.0" testImplementation("org.junit.jupiter:junit-jupiter:$junitVersion") testImplementation("com.google.truth:truth:$truthVersion") testImplementation("com.google.truth.extensions:truth-java8-extension:$truthVersion")