From 259f634d7e37a4ede6f88e755f8ecc4d6ca8e177 Mon Sep 17 00:00:00 2001 From: Padraig Gleeson Date: Tue, 17 Mar 2026 14:44:14 +0000 Subject: [PATCH] Update CI workflow to include Java 25 and upgrade actions --- .github/workflows/ci.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bd1b099..3158405 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,20 +16,18 @@ jobs: strategy: fail-fast: false matrix: - java: [ '8', '11', '16', '17', '19', '21' ] + java: [ '8', '11', '17', '19', '21', '25' ] runs-on: [ubuntu-latest, macos-latest, windows-latest] exclude: - runs-on: macos-latest java: "8" - - runs-on: macos-latest - java: "16" name: Test on Java ${{ matrix.Java }} on ${{ matrix.runs-on }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up JDK ${{ matrix.Java }} - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: java-version: ${{ matrix.Java }} distribution: 'temurin'