From aca0e80dd29380a591076936c8fb6cddc1346949 Mon Sep 17 00:00:00 2001 From: Tako Schotanus Date: Fri, 12 Jul 2024 02:19:34 +0200 Subject: [PATCH] ci: use JDK 11 but compile for 8 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3b1c489..b7d1696 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,10 +22,10 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Set up JDK 8 + - name: Set up JDK 11 uses: actions/setup-java@v4 with: - java-version: '8' + java-version: '11' distribution: 'temurin' cache: maven - name: Build with Maven