浏览代码

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

* Introduce fixed JDK versions

* Switch from temurin to zulu
Geertjan Wielenga 4 年之前
父节点
当前提交
39e563bbaf
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      .github/workflows/main.yml

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

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