From 57187ee6fcb04a642d20086871b27a22b6c838ed Mon Sep 17 00:00:00 2001 From: meiron03 Date: Sun, 5 Nov 2023 13:28:00 -0500 Subject: [PATCH] move back to jdk 11 because I am silly. --- .github/workflows/android-workflow.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/android-workflow.yaml b/.github/workflows/android-workflow.yaml index 7318d1c7..f0e7ea16 100644 --- a/.github/workflows/android-workflow.yaml +++ b/.github/workflows/android-workflow.yaml @@ -12,11 +12,11 @@ jobs: uses: actions/checkout@v2 # Set up Java JDK - - name: Set up JDK 17 + - name: Set up JDK 11 uses: actions/setup-java@v3 with: - java-version: '17' - distribution: 'temurin' + java-version: '11' + distribution: 'corretto' # Get the secrets from GitHub and add them to local.properties # https://blog.jakelee.co.uk/accessing-android-app-secret-from-github-actions-using-gradle/ @@ -44,11 +44,11 @@ jobs: - name: Checkout code uses: actions/checkout@v1 - - name: Set up JDK 17 + - name: Set up JDK 11 uses: actions/setup-java@v3 with: - java-version: '17' - distribution: 'temurin' + java-version: '11' + distribution: 'corretto' # Get the secrets from GitHub and add them to local.properties - name: Access PLATFORM_CLIENT_ID @@ -91,11 +91,11 @@ jobs: - name: Checkout code uses: actions/checkout@v1 - - name: Set up JDK 17 + - name: Set up JDK 11 uses: actions/setup-java@v3 with: - java-version: '17' - distribution: 'temurin' + java-version: '11' + distribution: 'corretto' # Get the secrets from GitHub and add them to local.properties - name: Access PLATFORM_CLIENT_ID