Skip to content

Commit df7e2c3

Browse files
committed
Use 'temurin' in all build workflows
Signed-off-by: Max Lambrecht <maxlambrecht@gmail.com>
1 parent ca64be7 commit df7e2c3

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/setup-java@v5
2626
with:
2727
java-version: ${{ matrix.java-version }}
28-
distribution: 'adopt'
28+
distribution: 'temurin'
2929
- name: Cache Gradle packages
3030
uses: actions/cache@v5
3131
with:
@@ -59,7 +59,7 @@ jobs:
5959
uses: actions/setup-java@v5
6060
with:
6161
java-version: ${{ matrix.java-version }}
62-
distribution: 'zulu'
62+
distribution: 'temurin'
6363
- name: Cache Gradle packages
6464
uses: actions/cache@v5
6565
with:

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: actions/setup-java@v5
1616
with:
1717
java-version: '17'
18-
distribution: 'adopt'
18+
distribution: 'temurin'
1919
- name: Generate and upload coverage report
2020
env:
2121
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}

.github/workflows/release_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/setup-java@v5
2626
with:
2727
java-version: ${{ env.JAVA_VERSION }}
28-
distribution: 'adopt'
28+
distribution: 'temurin'
2929
- name: Publish to Maven Central
3030
run: ./gradlew publishToMavenCentral
3131

0 commit comments

Comments
 (0)