Browse Source

Introduce fixed JDK versions and an OpenJDK distro to support it (#496)

* Introduce fixed JDK versions

* Switch from temurin to zulu
Geertjan Wielenga 4 years ago
parent
commit
39e563bbaf
1 changed files with 3 additions and 1 deletions
  1. 3 1
      .github/workflows/main.yml

+ 3 - 1
.github/workflows/main.yml

@@ -11,14 +11,16 @@ jobs:
       matrix:
         java-version:
         - 8
+        - 8.0.192
         - 11
+        - 11.0.3
     steps:
     - uses: actions/checkout@v2
     - name: Set up JDK ${{ matrix.java-version }}
       uses: actions/setup-java@v2
       with:
         java-version: ${{ matrix.java-version }}
-        distribution: adopt
+        distribution: zulu
     - name: Cache Maven packages
       uses: actions/cache@v2
       with: