We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d80e25b commit 51cf559Copy full SHA for 51cf559
.github/workflows/gradle-build.yml
@@ -53,11 +53,14 @@ jobs:
53
runs-on: ubuntu-latest
54
steps:
55
- uses: actions/checkout@v6
56
+ # Set up JDK 8 first for the Java toolchain to compile Java 8 bytecode
57
- name: Set up JDK 8 for toolchain
58
uses: actions/setup-java@v5
59
with:
60
java-version: 8
61
distribution: 'temurin'
62
+ # Set up JDK 17 as the primary JDK for running Gradle (Gradle 9.3.1 requires Java 17+)
63
+ # Cache is configured here since this is the JDK that Gradle will use
64
- name: Set up JDK 17 for Gradle
65
66
0 commit comments