Skip to content

Commit 840281e

Browse files
authored
chore: use JDK 8 in ci (#127)
Signed-off-by: Todd Baert <[email protected]> Signed-off-by: Todd Baert <[email protected]>
1 parent 11b5fe7 commit 840281e

File tree

5 files changed

+202
-213
lines changed

5 files changed

+202
-213
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
- name: Checkout Repository
1616
uses: actions/checkout@v3
1717

18-
- name: Set up JDK 18
18+
- name: Set up JDK 8
1919
uses: actions/setup-java@v3
2020
with:
21-
java-version: "18"
22-
distribution: "temurin"
21+
java-version: '8'
22+
distribution: 'temurin'
2323
cache: maven
2424

2525
- name: Cache local Maven repository

.github/workflows/release-please.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ jobs:
2525
if: ${{ steps.release.outputs.releases_created }}
2626
uses: actions/checkout@v3
2727

28-
- name: Set up JDK 18
28+
- name: Set up JDK 8
2929
if: ${{ steps.release.outputs.releases_created }}
3030
uses: actions/setup-java@v3
3131
with:
32-
java-version: "18"
33-
distribution: "temurin"
32+
java-version: '8'
33+
distribution: 'temurin'
3434
cache: maven
3535
server-id: ossrh
3636
server-username: OSSRH_USERNAME

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## System Requirements
44

5-
Java 18 is recommended for the tooling, plugins, etc. Maven 3.8+ is recommended.
5+
Java 8+ is required for the tooling, plugins, etc. Maven 3.8+ is recommended.
66

77
## Compilation target(s)
88

0 commit comments

Comments
 (0)