From 00217a2764cd42571af23e3068cf62b1068faeaa Mon Sep 17 00:00:00 2001 From: Eli Hart Date: Mon, 4 Dec 2023 10:06:38 -0800 Subject: [PATCH] use jdk 17 for release action --- .github/workflows/automated_github_release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/automated_github_release.yml b/.github/workflows/automated_github_release.yml index 12acda5a..0cf59c33 100644 --- a/.github/workflows/automated_github_release.yml +++ b/.github/workflows/automated_github_release.yml @@ -14,6 +14,10 @@ jobs: steps: - name: Checkout mavericks uses: actions/checkout@v2 + - uses: actions/setup-java@v3 + with: + distribution: 'temurin' + java-version: '17' - name: "Build & test" run: "./gradlew testReleaseUnitTest"