0
0
mirror of https://github.com/ankidroid/Anki-Android.git synced 2024-09-20 03:52:15 +02:00

fix: use supported JDK with Update Gradle Wrapper

* e2bec74646 enforced JDK 17/18
* update-gradle-wrapper.yml wasn't updated to handle this
  * use JDK 17 (temurin)

Fixes 14232
This commit is contained in:
David Allison 2023-08-15 01:18:08 +01:00 committed by Mike Hardy
parent 477597bfcd
commit 2a09b5e369

View File

@ -11,6 +11,12 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Configure JDK
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: "17" # newer libraries require 17 now, force it everywhere
- name: Update Gradle Wrapper
uses: gradle-update/update-gradle-wrapper-action@v1
with: