Skip to content

Commit 77ad96e

Browse files
committed
Fix java version in artifact publish action
1 parent 2f77998 commit 77ad96e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/cd.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ jobs:
1212
- name: Checkout
1313
uses: actions/checkout@v2
1414

15-
- name: Setup JDK 8
15+
- name: Setup JDK 17
1616
uses: actions/setup-java@v2
1717
with:
1818
distribution: 'temurin'
19-
java-version: 8
19+
java-version: 17
2020

2121
- name: Setup Gradle cache
2222
uses: actions/cache@v2
2323
with:
2424
path: ~/.gradle
25-
key: ${{ runner.os }}-8-gradle-${{ hashFiles('build.gradle') }}
25+
key: ${{ runner.os }}-17-gradle-${{ hashFiles('build.gradle') }}
2626
restore-keys: |
27-
${{ runner.os }}-8-gradle
27+
${{ runner.os }}-17-gradle
2828
2929
- name: Check
3030
run: ./gradlew check

0 commit comments

Comments
 (0)