Skip to content

Commit 70403d8

Browse files
committed
Set Java 11 in GitHub actions
1 parent 3655ff6 commit 70403d8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
java: [ '8', '11', '17', '21', '24' ]
13+
java: [ '11', '17', '21', '24' ]
1414
os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
1515
fail-fast: false
1616
steps:

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up Java for publishing to Maven Central Repository OSS
2323
uses: actions/setup-java@v4
2424
with:
25-
java-version: '8'
25+
java-version: '11'
2626
distribution: 'zulu'
2727
server-id: ossrh
2828
server-username: MAVEN_USERNAME

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Set up Java for publishing to Maven Central Repository OSS
2727
uses: actions/setup-java@v4
2828
with:
29-
java-version: '8'
29+
java-version: '11'
3030
distribution: 'zulu'
3131
server-id: ossrh
3232
server-username: MAVEN_USERNAME

0 commit comments

Comments
 (0)