From a77b62b6ba21a8396ccb1e35aeb10a7ce67786b2 Mon Sep 17 00:00:00 2001 From: Harald Kuhr Date: Fri, 14 Oct 2022 18:22:50 +0200 Subject: [PATCH] Replace Java 18 with 19 in build matrix. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1b42b65c..acc402d3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: fail-fast: false matrix: os: [ ubuntu-latest, windows-latest, macos-latest ] - java: [ 8, 11, 17, 18 ] + java: [ 8, 11, 17, 19 ] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2