Skip to content

Commit 09772f4

Browse files
committed
chore: #444 updated maven files to use java 17
1 parent f4beeab commit 09772f4

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/maven-release.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,11 @@ jobs:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- uses: actions/checkout@v2
28-
- name: Set up JDK 11
28+
- name: Set up JDK 17
2929
uses: actions/setup-java@v1
3030
with:
31-
java-version: 11
31+
java-version: 17
32+
distribution: 'temurin'
3233
- shell: bash
3334
env:
3435
gpg_private_key: ${{ secrets.gpg_private_key }}

.github/workflows/maven.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,10 @@ jobs:
3030

3131
steps:
3232
- uses: actions/checkout@v2
33-
- name: Set up JDK 11
33+
- name: Set up JDK 17
3434
uses: actions/setup-java@v1
3535
with:
36-
java-version: 11
36+
java-version: 17
37+
distribution: 'temurin'
3738
- name: Build with Maven
3839
run: mvn clean compile test --file pom.xml

0 commit comments

Comments
 (0)