Skip to content

Commit

Permalink
chore(CI): introduced jave 21 in CI java matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
valdar committed Jun 4, 2024
1 parent 17c0048 commit 5133b73
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,14 @@ on:
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
java: [ '17' ]
java: ['17']
experimental: [ false ]
include:
- java: '21'
experimental: true
steps:
- uses: actions/[email protected]
- name: Set up JDK ${{ matrix.java }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/daily-java-next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '18' ]
java: [ '21' ]
steps:
- uses: actions/[email protected]
- name: Set up JDK ${{ matrix.java }}
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/maven-it.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,14 @@ on:
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
java: [ '17' ]
java: ['17']
experimental: [ false ]
include:
- java: '21'
experimental: true
steps:
- uses: actions/[email protected]
- name: Set up JDK ${{ matrix.java }}
Expand Down

0 comments on commit 5133b73

Please sign in to comment.