From 0f7f4ec5bb4bba8418d046768d628051c6c742ab Mon Sep 17 00:00:00 2001 From: sstone Date: Mon, 14 Oct 2024 16:52:58 +0200 Subject: [PATCH] Run CI tests with JDK21 --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 262cd09485..6daff0cf58 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,12 +13,12 @@ jobs: timeout-minutes: 30 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - - name: Set up JDK 11 - uses: actions/setup-java@v3 + - name: Set up JDK 21 + uses: actions/setup-java@v4 with: - java-version: 11 + java-version: 21 distribution: 'adopt' - name: Cache Maven dependencies