Skip to content

Commit 50bbe78

Browse files
committedMay 21, 2023
Fix workflow build with JDK 17
1 parent d19c7d3 commit 50bbe78

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99

1010
steps:
1111
- uses: actions/checkout@v2
12-
- name: Set up JDK 11
12+
- name: Set up JDK 17
1313
uses: actions/setup-java@v2
1414
with:
15-
java-version: '11'
16-
distribution: 'adopt'
15+
java-version: '17'
16+
distribution: 'temurin'
1717

1818
- name: Cache Gradle packages
1919
uses: actions/cache@v2

0 commit comments

Comments
 (0)
Please sign in to comment.