From 05ecb41b65c747b68bcc02cefcd4eab4e6a6e109 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 18 Dec 2025 13:27:24 +0000 Subject: [PATCH] chore(deps): update actions/setup-java action to v5 --- .github/workflows/build.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/publish_maven.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cec5800..58b550f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: steps: - uses: actions/checkout@v5 - name: Build and run tests - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: java-version: "21" distribution: "temurin" diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index fd06e6a..0b5ca22 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -12,7 +12,7 @@ jobs: uses: actions/checkout@v5 - name: Set up JDK - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: distribution: "temurin" java-version: "21" diff --git a/.github/workflows/publish_maven.yml b/.github/workflows/publish_maven.yml index 97c62b0..0d0b29c 100644 --- a/.github/workflows/publish_maven.yml +++ b/.github/workflows/publish_maven.yml @@ -21,7 +21,7 @@ jobs: steps: - uses: actions/checkout@v5 - name: Set up Java for publishing to Maven Central Repository - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: java-version: "21" distribution: "temurin"