Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: upgrade workflows to Java 23 #1103

Merged
merged 3 commits into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- os: ubuntu-latest
java-version: 17
- os: ubuntu-latest
java-version: 22
java-version: 23
timeout-minutes: 120
steps:
- uses: actions/checkout@v4
Expand All @@ -54,7 +54,7 @@ jobs:
- os: ubuntu-latest
java-version: 17
- os: ubuntu-latest
java-version: 22
java-version: 23
timeout-minutes: 120
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
matrix:
os: [ ubuntu-latest ] # Windows doesn't work, Mac is not a deploy OS.
module: ["spring-integration", "quarkus-integration"]
java-version: [ 17, 21, 22 ] # LTS + latest.
java-version: [ 17, 21, 23 ] # LTS + latest.
timeout-minutes: 120
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request_quickstarts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
java-version: [ 17 ] # Only the first supported LTS; already too many jobs here.
java-version: [ 21 ] # Only the latest supported LTS; already too many jobs here.
# TODO: Add Python 3.10 once employee scheduling and school timetabling support it
python-version: ['3.11', '3.12']
fail-fast: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull_request_secure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,10 +225,10 @@ jobs:
fetch-depth: 0 # Otherwise merge will fail on account of not having history.

# Build and test
- name: Set up JDK 17
- name: Set up the JDK
uses: actions/setup-java@v4
with:
java-version: 17
java-version: 21
distribution: 'temurin'
cache: 'maven'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:

- uses: actions/setup-java@v4
with:
java-version: '17'
java-version: '21'
distribution: 'temurin'
cache: 'maven'

Expand Down
Loading