diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 23758a7..18ade30 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -78,7 +78,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.6 with: tag_name: ${{ steps.version.outputs.version_tag }} generate_release_notes: true diff --git a/build.gradle.kts b/build.gradle.kts index 5fe78f1..d45f1d9 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.17" apply (false) id("com.asarkar.gradle.build-time-tracker") version "4.3.0" } @@ -102,9 +102,9 @@ subprojects { dependencies { val log4jVersion = "2.23.1" - val guavaVersion = "33.2.0-jre" + val guavaVersion = "33.2.1-jre" implementation("org.apache.logging.log4j:log4j-core:$log4jVersion") - implementation("com.github.spotbugs:spotbugs-annotations:4.8.5") + implementation("com.github.spotbugs:spotbugs-annotations:4.8.6") implementation("com.google.guava:guava:$guavaVersion") val junitVersion = "5.10.2"