Skip to content

Commit 8acc551

Browse files
chore(deps): update actions/setup-java action to v5.1.0 (#1794)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/setup-java](https://redirect.github.com/actions/setup-java) | action | minor | `v5.0.0` -> `v5.1.0` | --- ### Release Notes <details> <summary>actions/setup-java (actions/setup-java)</summary> ### [`v5.1.0`](https://redirect.github.com/actions/setup-java/releases/tag/v5.1.0) [Compare Source](https://redirect.github.com/actions/setup-java/compare/v5.0.0...v5.1.0) ##### What's Changed ##### New Features - Add support for `.sdkmanrc` file in `java-version-file` parameter by [@&#8203;guicamest](https://redirect.github.com/guicamest) in [#&#8203;736](https://redirect.github.com/actions/setup-java/pull/736) - Add support for Microsoft OpenJDK 25 builds by [@&#8203;the-mod](https://redirect.github.com/the-mod) in [#&#8203;927](https://redirect.github.com/actions/setup-java/pull/927) ##### Bug Fixes & Improvements - Update Regex to Support All ASDF Versions for the supported distributions in tool-versions File by [@&#8203;aparnajyothi-y](https://redirect.github.com/aparnajyothi-y) in [#&#8203;767](https://redirect.github.com/actions/setup-java/pull/767) - Enhance error logging for network failures to include endpoint/IP details, add retry mechanism and update workflows to use macos-15-intel by [@&#8203;priya-kinthali](https://redirect.github.com/priya-kinthali) in [#&#8203;946](https://redirect.github.com/actions/setup-java/pull/946) - Update SapMachine URLs by [@&#8203;RealCLanger](https://redirect.github.com/RealCLanger) in [#&#8203;955](https://redirect.github.com/actions/setup-java/pull/955) - Add GitHub Token Support for GraalVM and Refactor Code by [@&#8203;mahabaleshwars](https://redirect.github.com/mahabaleshwars) in [#&#8203;849](https://redirect.github.com/actions/setup-java/pull/849) ##### Documentation changes - Update documentation to use checkout and Java v5 by [@&#8203;lmvysakh](https://redirect.github.com/lmvysakh) in [#&#8203;903](https://redirect.github.com/actions/setup-java/pull/903) - Clarify JAVA\_HOME and PATH setup in README by [@&#8203;chiranjib-swain](https://redirect.github.com/chiranjib-swain) in [#&#8203;841](https://redirect.github.com/actions/setup-java/pull/841) ##### Dependency updates - Upgrade prettier from 2.8.8 to 3.6.2 and document breaking changes in v5 by [@&#8203;dependabot](https://redirect.github.com/dependabot) in [#&#8203;873](https://redirect.github.com/actions/setup-java/pull/873) - Upgrade actions/publish-action from 0.3.0 to 0.4.0 by [@&#8203;dependabot](https://redirect.github.com/dependabot) in [#&#8203;912](https://redirect.github.com/actions/setup-java/pull/912) ##### New Contributors - [@&#8203;lmvysakh](https://redirect.github.com/lmvysakh) made their first contribution in [#&#8203;903](https://redirect.github.com/actions/setup-java/pull/903) - [@&#8203;chiranjib-swain](https://redirect.github.com/chiranjib-swain) made their first contribution in [#&#8203;841](https://redirect.github.com/actions/setup-java/pull/841) - [@&#8203;the-mod](https://redirect.github.com/the-mod) made their first contribution in [#&#8203;927](https://redirect.github.com/actions/setup-java/pull/927) - [@&#8203;priya-kinthali](https://redirect.github.com/priya-kinthali) made their first contribution in [#&#8203;946](https://redirect.github.com/actions/setup-java/pull/946) - [@&#8203;guicamest](https://redirect.github.com/guicamest) made their first contribution in [#&#8203;736](https://redirect.github.com/actions/setup-java/pull/736) **Full Changelog**: <actions/setup-java@v5...v5.1.0> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/line/line-bot-sdk-java). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi40Mi4yIiwidXBkYXRlZEluVmVyIjoiNDIuNDIuMiIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJkZXBlbmRlbmN5IHVwZ3JhZGUiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 532965c commit 8acc551

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/generate-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Update submodules
2323
run: git submodule update --remote --recursive
2424
- name: Set up Java
25-
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
25+
uses: actions/setup-java@f2beeb24e141e01a676f977032f5a29d81c9e27e # v5.1.0
2626
with:
2727
distribution: 'temurin'
2828
java-version: 17

.github/workflows/gradle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- '21'
3030
steps:
3131
- name: actions/setup-java@v3 (JDK ${{ matrix.java }})
32-
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
32+
uses: actions/setup-java@f2beeb24e141e01a676f977032f5a29d81c9e27e # v5.1.0
3333
with:
3434
distribution: 'temurin'
3535
java-version: ${{ matrix.java }}

.github/workflows/pom-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
java: [ '17' ] # We want to test on LTSs.
1919
steps:
2020
- name: actions/setup-java@v3 (JDK ${{ matrix.java }})
21-
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
21+
uses: actions/setup-java@f2beeb24e141e01a676f977032f5a29d81c9e27e # v5.1.0
2222
with:
2323
distribution: 'temurin'
2424
java-version: ${{ matrix.java }}

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
submodules: true
2222

2323
- name: Set up Java
24-
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
24+
uses: actions/setup-java@f2beeb24e141e01a676f977032f5a29d81c9e27e # v5.1.0
2525
with:
2626
java-version: '17'
2727
distribution: 'temurin'

0 commit comments

Comments
 (0)