From e054c1b06645136132fb1780af172eb5151bdb40 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Mon, 8 Apr 2024 14:37:19 -0700 Subject: [PATCH] GitHub Actions config: add JDK 22 to 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 b688c85c9d6d..69de3ac4ec8d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest] - java: [8, 11, 17, 21] + java: [8, 11, 17, 21, 22] runs-on: ${{matrix.os}} steps: - run: git config --global core.autocrlf false