GitHub Actions: Use Java 11

This commit is contained in:
Jakub Chrzanowski
2021-07-22 11:29:09 +02:00
committed by Jakub Chrzanowski
parent 9ad667ff05
commit 8ef79e2791
4 changed files with 13 additions and 12 deletions

View File

@@ -14,12 +14,12 @@ jobs:
runs-on: ubuntu-latest
steps:
# Setup Java 1.8 environment for the next steps
# Setup Java 11 environment for the next steps
- name: Setup Java
uses: actions/setup-java@v2
with:
distribution: zulu
java-version: 8
java-version: 11
# Check out current repository
- name: Fetch Sources
@@ -40,12 +40,12 @@ jobs:
runs-on: ubuntu-latest
steps:
# Setup Java 1.8 environment for the next steps
# Setup Java 11 environment for the next steps
- name: Setup Java
uses: actions/setup-java@v2
with:
distribution: zulu
java-version: 8
java-version: 11
# Check out current repository
- name: Fetch Sources