Skip to content

Commit

Permalink
Added testing and releasing for JDK 22
Browse files Browse the repository at this point in the history
  • Loading branch information
Roberto-Gentili committed May 1, 2024
1 parent 3a08aab commit 0d2090f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
paths:
- "src/main/**.java"
- "src/test/**.java"
# - ".github/workflows/**"
- ".github/workflows/**"
- "**.properties"
- "**.xml"

Expand All @@ -20,7 +20,7 @@ jobs:
max-parallel: 16
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
java: [8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21]
java: [8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22]
architecture: [x64]
exclude:
- os: macOS-latest
Expand Down Expand Up @@ -48,10 +48,10 @@ jobs:
if: github.event_name == 'push' && endsWith(github.event.head_commit.message, 'Releasing new version')
steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
- name: Set up JDK 22
uses: actions/setup-java@v3
with:
java-version: 21
java-version: 22
distribution: 'zulu'
server-id: ossrh
server-username: MAVEN_USERNAME
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
max-parallel: 15
matrix:
os: [windows-latest, macOS-latest, ubuntu-latest]
java: [8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21]
java: [8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22]
architecture: [x64]
exclude:
- os: macOS-latest
Expand Down Expand Up @@ -74,10 +74,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
- name: Set up JDK 22
uses: actions/setup-java@v3
with:
java-version: 21
java-version: 22
distribution: 'zulu'
server-id: ossrh
server-username: MAVEN_USERNAME
Expand Down

0 comments on commit 0d2090f

Please sign in to comment.