Skip to content

Commit caf4557

Browse files
committed
chore: use temurin distribution again, adjust versions
Signed-off-by: Chris Laprun <[email protected]>
1 parent 5d9152c commit caf4557

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: Set up Java and Maven
4343
uses: actions/setup-java@v5
4444
with:
45-
distribution: zulu
45+
distribution: temurin
4646
java-version: ${{ matrix.java }}
4747
- name: Run Special Integration Tests
4848
run: ./mvnw ${MAVEN_ARGS} -B package -P minimal-watch-timeout-dependent-it --file pom.xml

.github/workflows/e2e-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ jobs:
4343
- name: Set up Java and Maven
4444
uses: actions/setup-java@v5
4545
with:
46-
java-version: 17
47-
distribution: zulu
46+
java-version: 25
47+
distribution: temurin
4848
cache: 'maven'
4949

5050
- name: Build SDK

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Set up Java and Maven
3636
uses: actions/setup-java@v5
3737
with:
38-
distribution: zulu
38+
distribution: temurin
3939
java-version: ${{ inputs.java-version }}
4040
cache: 'maven'
4141
- name: Set up Minikube

.github/workflows/pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ jobs:
2121
- name: Set up Java and Maven
2222
uses: actions/setup-java@v5
2323
with:
24-
distribution: zulu
25-
java-version: 21
24+
distribution: temurin
25+
java-version: 25
2626
cache: 'maven'
2727
- name: Check code format
2828
run: |

.github/workflows/release-project-in-dir.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
uses: actions/setup-java@v5
2828
with:
2929
java-version: 17
30-
distribution: zulu
30+
distribution: temurin
3131
cache: 'maven'
3232
server-id: central
3333
server-username: MAVEN_USERNAME
@@ -64,7 +64,7 @@ jobs:
6464
uses: actions/setup-java@v5
6565
with:
6666
java-version: 17
67-
distribution: zulu
67+
distribution: temurin
6868
cache: 'maven'
6969

7070
- name: Update version to new SNAPSHOT version
@@ -80,4 +80,4 @@ jobs:
8080
uses: ad-m/github-push-action@master
8181
with:
8282
branch: "${{inputs.version_branch}}"
83-
github_token: ${{ secrets.GITHUB_TOKEN }}
83+
github_token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/snapshot-releases.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ jobs:
2020
- name: Set up Java and Maven
2121
uses: actions/setup-java@v5
2222
with:
23-
distribution: zulu
24-
java-version: 17
23+
distribution: temurin
24+
java-version: 21
2525
cache: 'maven'
2626
- name: Build and test project
2727
run: ./mvnw ${MAVEN_ARGS} clean install --file pom.xml
@@ -33,8 +33,8 @@ jobs:
3333
- name: Set up Java and Maven
3434
uses: actions/setup-java@v5
3535
with:
36-
java-version: 17
37-
distribution: zulu
36+
java-version: 21
37+
distribution: temurin
3838
cache: 'maven'
3939
server-id: central
4040
server-username: MAVEN_USERNAME

.github/workflows/sonar.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
- name: Set up Java and Maven
2828
uses: actions/setup-java@v5
2929
with:
30-
distribution: zulu
31-
java-version: 17
30+
distribution: temurin
31+
java-version: 25
3232
cache: 'maven'
3333
- name: Cache SonarCloud packages
3434
uses: actions/cache@v4

0 commit comments

Comments
 (0)