Skip to content

Commit

Permalink
Disable build for Java 11 (cf. Mailing list) and build with 17 by def…
Browse files Browse the repository at this point in the history
…ault. Further discussion about raising the actual Java baseline to 17 are still ongoing but for now we want to save GH action compute time.
  • Loading branch information
rzo1 committed Nov 11, 2024
1 parent 3cb1ea6 commit b3d9b32
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
java: [ 11, 17, 21 ]
java: [ 17, 21 ]
module: [ Client, Server, Core, External, Check-Updated-License-Files, Integration-Test ]
experimental: [false]
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightlies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 11
java-version: 17
- name: Set up Maven # We need to avoid default-http-blocker at the moment until we fix it ;-)
uses: stCarolas/setup-maven@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/snapshots.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 11
java-version: 17
- name: Set up Maven # We need to avoid default-http-blocker at the moment until we fix it ;-)
uses: stCarolas/setup-maven@v5
with:
Expand Down

0 comments on commit b3d9b32

Please sign in to comment.