From e71727e18cfb05f72a1857f11bbc912cb2f14957 Mon Sep 17 00:00:00 2001 From: Alexander Capehart Date: Fri, 12 May 2023 16:33:49 -0600 Subject: [PATCH] actions: use jdk 17 Using it as of last commit. --- .github/workflows/android.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 8738c44dd..f106a3aac 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -15,10 +15,10 @@ jobs: uses: actions/checkout@v3 - name: Clone submodules run: git submodule update --init --recursive - - name: Set up JDK 11 + - name: Set up JDK 17 uses: actions/setup-java@v3 with: - java-version: '11' + java-version: '17' distribution: 'temurin' cache: gradle - name: Grant execute permission for gradlew