Skip to content

Commit b9b0a1f

Browse files
authored
build: remove JDK 8 and 11 from workflow
Signed-off-by: Gregory Mitchell <me@gmitch215.xyz>
1 parent 37a43e5 commit b9b0a1f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
with:
2020
submodules: 'recursive'
2121
- uses: gradle/actions/wrapper-validation@v4
22-
- name: Set up JDK 8
22+
- name: Set up JDK 17
2323
uses: actions/setup-java@v5
2424
with:
2525
distribution: 'zulu'
26-
java-version: '8'
26+
java-version: '17'
2727
cache: 'gradle'
2828
- name: Change Permissions
2929
run: chmod +x ./gradlew
@@ -39,7 +39,7 @@ jobs:
3939
fail-fast: false
4040
matrix:
4141
os: [ubuntu-latest, macos-latest, windows-latest]
42-
java-version: [8, 11, 17, 21]
42+
java-version: [17, 21]
4343

4444
name: Build Java ${{ matrix.java-version }} / ${{ matrix.os }}
4545
steps:
@@ -71,10 +71,10 @@ jobs:
7171
- uses: actions/checkout@v4
7272
with:
7373
submodules: 'recursive'
74-
- name: Setup JDK 8
74+
- name: Setup JDK 17
7575
uses: actions/setup-java@v5
7676
with:
77-
java-version: '8'
77+
java-version: '17'
7878
distribution: 'zulu'
7979
cache: 'gradle'
8080
- name: Change Permissions
@@ -153,11 +153,11 @@ jobs:
153153
- uses: actions/checkout@v4
154154
with:
155155
submodules: 'recursive'
156-
- name: Set up JDK 8
156+
- name: Set up JDK 17
157157
uses: actions/setup-java@v5
158158
with:
159159
distribution: 'zulu'
160-
java-version: '8'
160+
java-version: '17'
161161
cache: 'gradle'
162162
- name: Change Permissions
163163
run: chmod +x ./gradlew

0 commit comments

Comments
 (0)