From 36e500b3ece1d55b1df40239cb5928070abf8101 Mon Sep 17 00:00:00 2001 From: Werner Randelshofer Date: Fri, 13 Sep 2024 12:55:09 +0200 Subject: [PATCH] Run CI builds with JDK 22 (instead of 22-ea). --- .github/workflows/ci.yml | 2 +- .github/workflows/maven-publish.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4e3b2967..6c90cdc1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: os: [ ubuntu-latest ] - java: [ 22-ea ] + java: [ 22 ] arch: [ x64 ] dist: [ zulu ] fail-fast: false diff --git a/.github/workflows/maven-publish.yml b/.github/workflows/maven-publish.yml index a0e041f0..fb0b2a0a 100644 --- a/.github/workflows/maven-publish.yml +++ b/.github/workflows/maven-publish.yml @@ -20,7 +20,7 @@ jobs: - name: Set up JDK 22 uses: actions/setup-java@v3 with: - java-version: '22-ea' + java-version: '22' distribution: 'temurin' server-id: github # Value of the distributionManagement/repository/id field of the pom.xml settings-path: ${{ github.workspace }} # location for the settings.xml file