Skip to content

Commit 474615a

Browse files
committed
Opt for Java 11 minimum
1 parent 62cf909 commit 474615a

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/launcher-test.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ permissions:
1717

1818
jobs:
1919

20-
launcher-test-macos-jdk8:
20+
launcher-test-macos-jdk11:
2121

2222
runs-on: macos-latest
23-
# macos-latest (now >12) no longer installs Java 8
23+
# macos-latest (now 14) supports at minimum Java 11
2424
# Options at https://github.com/actions/runner-images
2525

2626
steps:
@@ -31,10 +31,10 @@ jobs:
3131

3232
- uses: actions/checkout@v4
3333

34-
- name: Set up JDK 8
34+
- name: Set up JDK 11
3535
uses: actions/setup-java@v4
3636
with:
37-
java-version: '8'
37+
java-version: '11'
3838
distribution: 'temurin'
3939

4040
# We have to install Python 2.7 explicitly
@@ -81,3 +81,4 @@ jobs:
8181
- name: Run Java tests with Ant
8282
run: ant javatest-ci
8383

84+

0 commit comments

Comments
 (0)