Skip to content

Commit 2d36b1d

Browse files
authored
Update build_and_test.yml
updated jdk version to 17
1 parent 00293fa commit 2d36b1d

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/build_and_test.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,14 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v1
1212

13-
- name: Set Up JDK
14-
uses: actions/setup-java@v1
13+
- name: Set up JDK 17
14+
uses: actions/setup-java@v3
1515
with:
16-
java-version: 1.11
16+
distribution: 'temurin'
17+
java-version: '17'
1718

1819
- name: Run Tests
1920
run: ./gradlew test
2021

2122
- name: Build Project
22-
run: ./gradlew assemble
23+
run: ./gradlew assemble

0 commit comments

Comments
 (0)