From 3e039b13aeb5eccacee262787169ecff0b0552c1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 14 Oct 2023 03:00:59 +0000 Subject: [PATCH] Update all dependencies --- .github/workflows/build.yml | 10 +++++----- build.gradle.kts | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0276f25..4d97c72 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: os: [ ubuntu-latest, windows-latest, macos-latest ] steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Java 21 uses: actions/setup-java@v3 @@ -44,7 +44,7 @@ jobs: os: [ ubuntu-latest, windows-latest, macos-latest ] steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Java 21 uses: actions/setup-java@v3 @@ -95,7 +95,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -107,13 +107,13 @@ jobs: - name: Bump version id: version - uses: paulhatch/semantic-version@v5.0.3 + uses: paulhatch/semantic-version@v5.3.0 - name: Build base image run: docker build -t handbrake-java-base -f base.Dockerfile . - name: Login to ghcr - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.repository_owner }} diff --git a/build.gradle.kts b/build.gradle.kts index 8210525..d754177 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -91,20 +91,20 @@ subprojects { dependencies { val log4jVersion = "2.20.0" - val guavaVersion = "32.0.1-jre" + val guavaVersion = "32.1.3-jre" implementation("org.apache.logging.log4j:log4j-core:$log4jVersion") - implementation("com.github.spotbugs:spotbugs-annotations:4.7.3") + implementation("com.github.spotbugs:spotbugs-annotations:4.8.0") implementation("com.google.guava:guava:$guavaVersion") - val junitVersion = "5.9.3" + val junitVersion = "5.10.0" val truthVersion = "1.1.5" - val mockitoVersion = "5.4.0" + val mockitoVersion = "5.6.0" testImplementation("org.junit.jupiter:junit-jupiter:$junitVersion") testImplementation("com.google.truth:truth:$truthVersion") testImplementation("com.google.truth.extensions:truth-java8-extension:$truthVersion") testImplementation("org.mockito:mockito-core:$mockitoVersion") testImplementation("org.mockito:mockito-junit-jupiter:$mockitoVersion") - testImplementation("com.google.jimfs:jimfs:1.2") + testImplementation("com.google.jimfs:jimfs:1.3.0") configurations.all { exclude("org.assertj")