We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f77998 commit 77ad96eCopy full SHA for 77ad96e
.github/workflows/cd.yml
@@ -12,19 +12,19 @@ jobs:
12
- name: Checkout
13
uses: actions/checkout@v2
14
15
- - name: Setup JDK 8
+ - name: Setup JDK 17
16
uses: actions/setup-java@v2
17
with:
18
distribution: 'temurin'
19
- java-version: 8
+ java-version: 17
20
21
- name: Setup Gradle cache
22
uses: actions/cache@v2
23
24
path: ~/.gradle
25
- key: ${{ runner.os }}-8-gradle-${{ hashFiles('build.gradle') }}
+ key: ${{ runner.os }}-17-gradle-${{ hashFiles('build.gradle') }}
26
restore-keys: |
27
- ${{ runner.os }}-8-gradle
+ ${{ runner.os }}-17-gradle
28
29
- name: Check
30
run: ./gradlew check
0 commit comments