From 24f8f828e777a7f6c3c1573cd2f7b090875965ef Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 7 Nov 2023 06:53:16 +0000 Subject: [PATCH] Update all dependencies --- auto-handbrake-cfr/build.gradle.kts | 2 +- base.Dockerfile | 2 +- build.gradle.kts | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/auto-handbrake-cfr/build.gradle.kts b/auto-handbrake-cfr/build.gradle.kts index f968ac0..c5f397d 100644 --- a/auto-handbrake-cfr/build.gradle.kts +++ b/auto-handbrake-cfr/build.gradle.kts @@ -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 { diff --git a/base.Dockerfile b/base.Dockerfile index 407b729..f439e77 100644 --- a/base.Dockerfile +++ b/base.Dockerfile @@ -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 diff --git a/build.gradle.kts b/build.gradle.kts index d754177..33b147c 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.22.0" apply (false) - id("com.github.spotbugs") version "5.1.5" apply (false) + id("com.github.spotbugs") version "5.2.3" apply (false) id("com.asarkar.gradle.build-time-tracker") version "4.3.0" } @@ -90,15 +90,15 @@ subprojects { } dependencies { - val log4jVersion = "2.20.0" + val log4jVersion = "2.21.1" 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.1") 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.7.0" testImplementation("org.junit.jupiter:junit-jupiter:$junitVersion") testImplementation("com.google.truth:truth:$truthVersion") testImplementation("com.google.truth.extensions:truth-java8-extension:$truthVersion")