Skip to content

Commit f8a8bba

Browse files
authored
Using TCK Tested JDK builds of OpenJDK (#7354)
* Using the latest LTS and fixed (major) versions of the OpenJDK. Zulu builds are used b/c it supports archived JDK, LTS, and Non-LTS versions. Signed-off-by: Carl Dea <[email protected]> * Remove matrix and fixed versions of JDK that was used in setup-java GH actions. Signed-off-by: Carl Dea <[email protected]>
1 parent 9b9bcc1 commit f8a8bba

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/gradle_branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up JDK 8
1717
uses: actions/setup-java@v2
1818
with:
19-
distribution: 'adopt'
19+
distribution: 'zulu'
2020
java-version: '8'
2121
- name: Cache Gradle packages
2222
uses: actions/[email protected]

.github/workflows/gradle_jdk11.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up JDK 11
1919
uses: actions/setup-java@v2
2020
with:
21-
distribution: 'adopt'
21+
distribution: 'zulu'
2222
java-version: '11'
2323
- name: Cache Gradle packages
2424
uses: actions/[email protected]

.github/workflows/gradle_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up JDK 8
1717
uses: actions/setup-java@v2
1818
with:
19-
distribution: 'adopt'
19+
distribution: 'zulu'
2020
java-version: '8'
2121
- name: Cache Gradle packages
2222
uses: actions/[email protected]

.github/workflows/gradle_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Set up JDK 8
2222
uses: actions/setup-java@v2
2323
with:
24-
distribution: 'adopt'
24+
distribution: 'zulu'
2525
java-version: '8'
2626
- name: Cache Gradle packages
2727
uses: actions/[email protected]

.github/workflows/gradle_snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up JDK 8
2121
uses: actions/setup-java@v2
2222
with:
23-
distribution: 'adopt'
23+
distribution: 'zulu'
2424
java-version: '8'
2525
- name: Cache Gradle packages
2626
uses: actions/[email protected]

0 commit comments

Comments
 (0)