From 87c18e3ee505b3795db0cc32b046258ac5c8bed6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 25 Sep 2024 03:01:35 +0000 Subject: [PATCH] Update all dependencies --- .github/workflows/build.yml | 2 +- build.gradle.kts | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 897c61a..faa18d2 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.5 + uses: softprops/action-gh-release@v2.0.8 with: tag_name: ${{ steps.version.outputs.version_tag }} generate_release_notes: true diff --git a/build.gradle.kts b/build.gradle.kts index 85d28d2..35b653c 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.15" apply (false) + id("com.github.spotbugs") version "6.0.23" apply (false) id("com.asarkar.gradle.build-time-tracker") version "4.3.0" } @@ -102,16 +102,16 @@ subprojects { } dependencies { - implementation("org.apache.logging.log4j:log4j-core:2.23.1") - implementation("org.apache.logging.log4j:log4j-api:2.23.1") - implementation("org.apache.logging.log4j:log4j-slf4j2-impl:2.23.1") - implementation("com.github.spotbugs:spotbugs-annotations:4.8.5") - implementation("com.google.guava:guava:33.2.0-jre") + implementation("org.apache.logging.log4j:log4j-core:2.24.0") + implementation("org.apache.logging.log4j:log4j-api:2.24.0") + implementation("org.apache.logging.log4j:log4j-slf4j2-impl:2.24.0") + implementation("com.github.spotbugs:spotbugs-annotations:4.8.6") + implementation("com.google.guava:guava:33.3.1-jre") - testImplementation("org.junit.jupiter:junit-jupiter:5.10.2") - testImplementation("com.google.truth:truth:1.4.2") - testImplementation("org.mockito:mockito-core:5.12.0") - testImplementation("org.mockito:mockito-junit-jupiter:5.12.0") + testImplementation("org.junit.jupiter:junit-jupiter:5.11.0") + testImplementation("com.google.truth:truth:1.4.4") + testImplementation("org.mockito:mockito-core:5.13.0") + testImplementation("org.mockito:mockito-junit-jupiter:5.13.0") configurations.all { exclude("org.assertj")