From e10c321b3605ce2c90aba13be101e22a75c0ae7e Mon Sep 17 00:00:00 2001 From: Gary O'Neall Date: Fri, 27 Oct 2023 00:42:05 -0700 Subject: [PATCH] Update CI to use JDK 17 Required by Sonar-Cloud --- .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 d929e55..7cc0284 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,10 +18,11 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 0 - - name: Set up JDK 11 - uses: actions/setup-java@v1 + - name: Set up JDK 17 + uses: actions/setup-java@v3 with: - java-version: 11 + distribution: 'temurin' + java-version: 17 - name: Cache SonarCloud packages uses: actions/cache@v1 with: