Skip to content

Commit 5ed0769

Browse files
committed
ci: temurin jdk replaces adopt open jdk
Switch to new vendor. Include now released jdk 17 in unit test matrix, drop jdk 16.
1 parent f15fff8 commit 5ed0769

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/code-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Setup Java
2222
uses: actions/setup-java@v2
2323
with:
24-
distribution: 'adopt'
24+
distribution: 'temurin'
2525
java-version: '11'
2626

2727
- name: Install babashka

.github/workflows/libs-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Setup Java
2525
uses: actions/setup-java@v2
2626
with:
27-
distribution: 'adopt'
27+
distribution: 'temurin'
2828
java-version: '11'
2929

3030
- name: Install planck

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Setup Java
3333
uses: actions/setup-java@v2
3434
with:
35-
distribution: 'adopt'
35+
distribution: 'temurin'
3636
java-version: '11'
3737

3838
- name: Install Babashka

.github/workflows/unit-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ windows-latest, ubuntu-latest, macos-latest ]
11-
java: [ '8', '11', '16' ]
11+
java: [ '8', '11', '17' ]
1212

1313
name: ${{ matrix.os }},jdk ${{ matrix.java }}
1414

@@ -47,7 +47,7 @@ jobs:
4747
- name: "Setup Java"
4848
uses: actions/setup-java@v2
4949
with:
50-
distribution: 'adopt'
50+
distribution: 'temurin'
5151
java-version: ${{ matrix.java }}
5252

5353
#

0 commit comments

Comments
 (0)