From 1128f95cf0b46f5214cebfe5ba25b9654ab2f58e Mon Sep 17 00:00:00 2001 From: mmyers Date: Mon, 18 Sep 2023 15:41:22 -0500 Subject: [PATCH] Use Java 8 in build to ensure compatibility --- .github/workflows/ant.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ant.yml b/.github/workflows/ant.yml index 78e97c0..c7bb6c5 100644 --- a/.github/workflows/ant.yml +++ b/.github/workflows/ant.yml @@ -16,10 +16,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Set up JDK 11 + - name: Set up JDK 8 uses: actions/setup-java@v3 with: - java-version: '11' + java-version: '8' distribution: 'adopt' - name: Initialize CodeQL