Skip to content

Commit a363091

Browse files
authored
Use 'temurin' in all build workflows (spiffe#383)
Signed-off-by: Max Lambrecht <maxlambrecht@gmail.com>
1 parent cf844d4 commit a363091

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
@@ -13,7 +13,7 @@ jobs:
1313
uses: actions/setup-java@v5
1414
with:
1515
java-version: '17'
16-
distribution: 'adopt'
16+
distribution: 'temurin'
1717

1818
- name: Generate JaCoCo report
1919
run: ./gradlew test jacocoTestReport

.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)