Skip to content

Commit 8fdddd6

Browse files
authored
Use JDK 1.11 for GitHub Actions
Some of our tests require at least 1.9, but I will go as far as JDK 11 which is plenty new and quite stable. See exercism#1726.
1 parent bb9ab12 commit 8fdddd6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/gradle.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ jobs:
2727

2828
steps:
2929
- uses: actions/checkout@v2
30-
- name: Set up JDK 1.8
30+
- name: Set up JDK 1.11
3131
uses: actions/setup-java@v1
3232
with:
33-
java-version: 1.8
33+
java-version: 1.11
3434
- name: Grant execute permission for gradlew
3535
run: chmod +x gradlew
3636
- name: Compile and checkstyle with Gradle
@@ -42,10 +42,10 @@ jobs:
4242

4343
steps:
4444
- uses: actions/checkout@v2
45-
- name: Set up JDK 1.8
45+
- name: Set up JDK 1.11
4646
uses: actions/setup-java@v1
4747
with:
48-
java-version: 1.8
48+
java-version: 1.11
4949
- name: Grant execute permission for gradlew
5050
run: chmod +x gradlew
5151
- name: Journey test

0 commit comments

Comments
 (0)