Skip to content

Commit 920003a

Browse files
authored
Merge pull request #251 from geertjanw/develop
Use fixed version and move away from Adopt
2 parents cdb2866 + 60024d9 commit 920003a

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/maven.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ jobs:
1313
build:
1414

1515
runs-on: ubuntu-latest
16-
16+
strategy:
17+
matrix:
18+
java: [ '11', '11.0.3' ]
1719
steps:
1820
- name: Checkout core repository
1921
uses: actions/checkout@v2
@@ -30,7 +32,7 @@ jobs:
3032
- name: Set up JDK 11
3133
uses: actions/setup-java@v2
3234
with:
33-
java-version: '11'
34-
distribution: 'adopt'
35+
java-version: ${{ matrix.java }}
36+
distribution: 'zulu'
3537
- name: Build with Maven
3638
run: mvn clean package --file $GITHUB_WORKSPACE/core/org.jcryptool.releng/pom.xml

0 commit comments

Comments
 (0)