Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
integration_tests:
strategy:
matrix:
java: [ 17, 21, 24 ]
java: [ 17, 21, 25 ]
# Use the latest versions supported by minikube, otherwise GitHub it will
# end up in a throttling requests from minikube and workflow will fail.
# Minikube does such requests only if a version is not officially supported.
Expand All @@ -26,7 +26,7 @@ jobs:
httpclient: [ 'vertx', 'jdk', 'jetty' ]
uses: ./.github/workflows/integration-tests.yml
with:
java-version: 24
java-version: 25
kube-version: '1.32.0'
http-client: ${{ matrix.httpclient }}
experimental: true
Expand All @@ -36,7 +36,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 17, 21, 24 ]
java: [ 17, 21, 25 ]
steps:
- uses: actions/checkout@v5
- name: Set up Java and Maven
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Set up Java and Maven
uses: actions/setup-java@v5
with:
java-version: 17
java-version: 25
distribution: temurin
cache: 'maven'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 21
java-version: 25
cache: 'maven'
- name: Check code format
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-project-in-dir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,4 @@ jobs:
uses: ad-m/github-push-action@master
with:
branch: "${{inputs.version_branch}}"
github_token: ${{ secrets.GITHUB_TOKEN }}
github_token: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/snapshot-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 17
java-version: 21
cache: 'maven'
- name: Build and test project
run: ./mvnw ${MAVEN_ARGS} clean install --file pom.xml
Expand All @@ -33,7 +33,7 @@ jobs:
- name: Set up Java and Maven
uses: actions/setup-java@v5
with:
java-version: 17
java-version: 21
distribution: temurin
cache: 'maven'
server-id: central
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sonar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 17
java-version: 25
cache: 'maven'
- name: Cache SonarCloud packages
uses: actions/cache@v4
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,7 @@
</pom>
<java>
<googleJavaFormat>
<version>1.28.0</version>
<reflowLongStrings>true</reflowLongStrings>
</googleJavaFormat>
<importOrder>
Expand Down
Loading