Skip to content

Commit

Permalink
Update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Feb 3, 2024
1 parent 662f996 commit 69fc753
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup Java 21
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: corretto
java-version: 21
Expand All @@ -28,7 +28,7 @@ jobs:
run: ./gradlew projects clean build --no-daemon --refresh-dependencies

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
flags: unit-tests-${{ matrix.os }}
fail_ci_if_error: true
Expand All @@ -43,7 +43,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup Java 21
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: corretto
java-version: 21
Expand All @@ -55,7 +55,7 @@ jobs:
run: ./gradlew projects clean integrationTest --no-daemon --refresh-dependencies

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
flags: integration-tests-${{ matrix.os }}
fail_ci_if_error: true
Expand All @@ -72,7 +72,7 @@ jobs:

- name: Bump version
id: version
uses: paulhatch/semantic-version@v5.3.0
uses: paulhatch/semantic-version@v5.4.0

- name: Create GitHub tag and release
uses: softprops/[email protected]
Expand Down
16 changes: 8 additions & 8 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ logger.quiet("Gradle version: ${gradle.gradleVersion}")

plugins {
id("java-library")
id("com.diffplug.gradle.spotless") version "6.22.0" apply (false)
id("com.github.spotbugs") version "5.1.5" apply (false)
id("com.diffplug.gradle.spotless") version "6.25.0" apply (false)
id("com.github.spotbugs") version "6.0.7" apply (false)
id("com.asarkar.gradle.build-time-tracker") version "4.3.0"
}

Expand Down Expand Up @@ -101,15 +101,15 @@ subprojects {
}

dependencies {
val log4jVersion = "2.20.0"
val guavaVersion = "32.1.3-jre"
val log4jVersion = "2.22.1"
val guavaVersion = "33.0.0-jre"
implementation("org.apache.logging.log4j:log4j-core:$log4jVersion")
implementation("com.github.spotbugs:spotbugs-annotations:4.8.0")
implementation("com.github.spotbugs:spotbugs-annotations:4.8.3")
implementation("com.google.guava:guava:$guavaVersion")

val junitVersion = "5.10.0"
val truthVersion = "1.1.5"
val mockitoVersion = "5.6.0"
val junitVersion = "5.10.1"
val truthVersion = "1.4.0"
val mockitoVersion = "5.10.0"
testImplementation("org.junit.jupiter:junit-jupiter:$junitVersion")
testImplementation("com.google.truth:truth:$truthVersion")
testImplementation("com.google.truth.extensions:truth-java8-extension:$truthVersion")
Expand Down

0 comments on commit 69fc753

Please sign in to comment.