Skip to content

Commit 99c4ebc

Browse files
committed
Bump actions/setup-java from 1 to 3, use Temurin, drop Java 14
Adopt OpenJDK moved to Eclipse Temurin and is no longer updated. Temurin builds for JDK 14 are however not available. Therefore, we drop the JDK 14 CI build. Bumps [actions/setup-java](https://github.com/actions/setup-java) from 1 to 3. - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](actions/setup-java@v1...v3) --- updated-dependencies: - dependency-name: actions/setup-java - dependency-type: direct:production - update-type: version-update:semver-major Signed-off-by: Alexander Kriegisch <[email protected]>
1 parent eef799d commit 99c4ebc

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/maven.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,18 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
java: [ 11, 14, 17 ]
22+
java: [ 11, 17 ]
2323

2424
runs-on: ubuntu-latest
2525

2626
steps:
2727
- uses: actions/checkout@v2
2828

2929
- name: Set up JDK ${{ matrix.java }}
30-
uses: actions/setup-java@v1
30+
uses: actions/setup-java@v3
3131
with:
3232
java-version: ${{ matrix.java }}
33+
distribution: temurin
3334

3435
- name: Print tool versions
3536
run: |

0 commit comments

Comments
 (0)