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 Dec 5, 2023
1 parent d0818f5 commit a66d1c0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,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 @@ -47,7 +47,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 Down Expand Up @@ -100,7 +100,7 @@ jobs:
fetch-depth: 0

- name: Setup Java 21
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: corretto
java-version: 21
Expand Down
2 changes: 1 addition & 1 deletion auto-handbrake-cfr/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import org.unbrokendome.gradle.plugins.testsets.dsl.testSets
plugins {
id("org.unbroken-dome.test-sets") version "4.1.0"
id("com.google.cloud.tools.jib") version "3.4.0"
id("org.ajoberstar.grgit") version "5.2.0"
id("org.ajoberstar.grgit") version "5.2.1"
}

testSets {
Expand Down
2 changes: 1 addition & 1 deletion base.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# base HandBrake + Java image

FROM amazoncorretto:21-alpine3.15
FROM amazoncorretto:21.0.1-alpine3.15

# Compile HandBrake
# credit: https://github.com/txstate-etc/mediaflo-encoder/blob/77bda38311f97903bd11d4fe10a0c516e8d8d145/worker/Dockerfile
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.22.0" apply (false)
id("com.github.spotbugs") version "5.1.5" apply (false)
id("com.diffplug.gradle.spotless") version "6.23.3" apply (false)
id("com.github.spotbugs") version "6.0.2" apply (false)
id("com.asarkar.gradle.build-time-tracker") version "4.3.0"
}

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

dependencies {
val log4jVersion = "2.20.0"
val log4jVersion = "2.22.0"
val guavaVersion = "32.1.3-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.2")
implementation("com.google.guava:guava:$guavaVersion")

val junitVersion = "5.10.0"
val junitVersion = "5.10.1"
val truthVersion = "1.1.5"
val mockitoVersion = "5.6.0"
val mockitoVersion = "5.8.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 a66d1c0

Please sign in to comment.