Skip to content

Commit

Permalink
Update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 17, 2024
1 parent 458d57b commit 60ec12d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
./gradlew clean build
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
flags: unit-tests-${{ matrix.os }}
fail_ci_if_error: true
Expand All @@ -54,7 +54,7 @@ jobs:
./gradlew clean integrationTest
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
flags: integration-tests-${{ matrix.os }}
fail_ci_if_error: true
Expand All @@ -77,7 +77,7 @@ jobs:
uses: paulhatch/[email protected]

- name: Create GitHub tag and release
uses: softprops/action-gh-release@v2.0.5
uses: softprops/action-gh-release@v2.2.0
with:
tag_name: ${{ steps.version.outputs.version_tag }}
generate_release_notes: true
20 changes: 10 additions & 10 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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.26" apply (false)
id("com.asarkar.gradle.build-time-tracker") version "4.3.0"
}

Expand Down Expand Up @@ -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.3")
implementation("org.apache.logging.log4j:log4j-api:2.24.3")
implementation("org.apache.logging.log4j:log4j-slf4j2-impl:2.24.3")
implementation("com.github.spotbugs:spotbugs-annotations:4.8.6")
implementation("com.google.guava:guava:33.4.0-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.4")
testImplementation("com.google.truth:truth:1.4.4")
testImplementation("org.mockito:mockito-core:5.14.2")
testImplementation("org.mockito:mockito-junit-jupiter:5.14.2")

configurations.all {
exclude("org.assertj")
Expand Down

0 comments on commit 60ec12d

Please sign in to comment.