From 794026f5d9047043ca797acb210fd7f8c5fc817e Mon Sep 17 00:00:00 2001 From: Matt Gerega Date: Wed, 1 Feb 2023 13:44:13 -0500 Subject: [PATCH] Changed build to JDK 11 --- .github/workflows/build.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e169e89..48f31c8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,10 +19,11 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 0 - - name: Set up JDK 1.8 - uses: actions/setup-java@v1 + - name: Set up JDK 11 + uses: actions/setup-java@v2 with: - java-version: 1.8 + distribution: corretto + java-version: 11 - name: Set default version run: echo "VERSION=$(git describe --tags --dirty)" >> $GITHUB_ENV - name: Set release version