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 Sep 29, 2023
1 parent 84d30ec commit 90ce6fe
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
os: [ ubuntu-latest, windows-latest, macos-latest ]
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Java 19
uses: actions/setup-java@v3
Expand All @@ -40,7 +40,7 @@ jobs:
os: [ ubuntu-latest, windows-latest, macos-latest ]
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Java 19
uses: actions/setup-java@v3
Expand All @@ -66,13 +66,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Bump version
id: version
uses: paulhatch/semantic-version@v5.0.2
uses: paulhatch/semantic-version@v5.2.1

- name: Create GitHub tag and release
uses: softprops/[email protected]
Expand Down
12 changes: 6 additions & 6 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.19.0" apply (false)
id("com.github.spotbugs") version "5.0.14" apply (false)
id("com.diffplug.gradle.spotless") version "6.22.0" apply (false)
id("com.github.spotbugs") version "5.1.3" apply (false)
id("com.asarkar.gradle.build-time-tracker") version "4.3.0"
}

Expand Down Expand Up @@ -102,14 +102,14 @@ subprojects {

dependencies {
val log4jVersion = "2.20.0"
val guavaVersion = "32.0.1-jre"
val guavaVersion = "32.1.2-jre"
implementation("org.apache.logging.log4j:log4j-core:$log4jVersion")
implementation("com.github.spotbugs:spotbugs-annotations:4.7.3")
implementation("com.google.guava:guava:$guavaVersion")

val junitVersion = "5.9.3"
val truthVersion = "1.1.4"
val mockitoVersion = "5.3.1"
val junitVersion = "5.10.0"
val truthVersion = "1.1.5"
val mockitoVersion = "5.5.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
2 changes: 1 addition & 1 deletion hello-world/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("org.unbroken-dome.test-sets") version "4.0.0"
id("org.unbroken-dome.test-sets") version "4.1.0"
}

testSets {
Expand Down

0 comments on commit 90ce6fe

Please sign in to comment.