This is an automated email from the ASF dual-hosted git repository. jamesfredley pushed a commit to branch github-workflow-java-24 in repository https://gitbox.apache.org/repos/asf/grails-core.git
commit 39e34bfe00045345b73c0bd83459c8cea4fdeaf4 Author: James Fredley <[email protected]> AuthorDate: Tue May 13 11:26:34 2025 -0400 Run workflow with Java 24 instead of 23, in addition to LTS versions 17 and 21 24 was released on March 18, 2025 --- .github/workflows/gradle.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 37e2b11cbc..648776deaf 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -60,7 +60,7 @@ jobs: strategy: fail-fast: false matrix: - java: [ 17, 21, 23 ] + java: [ 17, 21, 24 ] os: [ ubuntu-latest, windows-latest, macos-latest ] runs-on: ${{ matrix.os }} steps: @@ -89,7 +89,7 @@ jobs: strategy: fail-fast: false matrix: - java: [ 17, 21, 23 ] + java: [ 17, 21, 24 ] runs-on: ubuntu-24.04 steps: - name: "📥 Checkout repository"
