From 9d9bf01f2db103b88187e76bb5448cf814fb41a4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Sep 2026 09:02:59 -0700 Subject: [PATCH] Bump actions/setup-java from 5.6.0 to 6.0.0 in the github-actions group MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps the github-actions group with 1 update: [actions/setup-java](https://github.com/actions/setup-java). Updates `actions/setup-java` from 5.6.0 to 6.0.0
Release notes

Sourced from actions/setup-java's releases.

v6.0.0

What's Changed

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/setup-java&package-manager=github_actions&previous-version=5.6.0&new-version=6.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
Fixes https://github.com/google/auto/pull/2124 COPYBARA_INTEGRATE_REVIEW=https://github.com/google/auto/pull/2124 from google:dependabot/github_actions/github-actions-62c522be73 6e944937fed2a57f78bffdc9334f70c1a407ca6b PiperOrigin-RevId: 975160353 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 610ec662b2..4e73fbbe84 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: restore-keys: | maven- - name: 'Set up JDK ${{ matrix.java }}' - uses: actions/setup-java@03ad4de0992f5dab5e18fcb136590ce7c4a0ac95 + uses: actions/setup-java@dd06d9cba3e5552c54d9f8ea23572deb30010f7c with: java-version: ${{ matrix.java }} distribution: 'temurin' @@ -71,7 +71,7 @@ jobs: restore-keys: | maven- - name: 'Set up JDK 11' - uses: actions/setup-java@03ad4de0992f5dab5e18fcb136590ce7c4a0ac95 + uses: actions/setup-java@dd06d9cba3e5552c54d9f8ea23572deb30010f7c with: java-version: 11 distribution: 'temurin' @@ -104,7 +104,7 @@ jobs: restore-keys: | maven- - name: 'Set up JDK 17' # need 15+ to avoid https://bugs.openjdk.org/browse/JDK-8241780 - uses: actions/setup-java@03ad4de0992f5dab5e18fcb136590ce7c4a0ac95 + uses: actions/setup-java@dd06d9cba3e5552c54d9f8ea23572deb30010f7c with: java-version: 17 distribution: 'temurin'