Skip to content

Commit

Permalink
updated github actions to use jdk 17
Browse files Browse the repository at this point in the history
  • Loading branch information
nisrulz committed Oct 20, 2023
1 parent 2ddc1a5 commit c04289c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
- name: Set up Java 17
uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: '11'
distribution: "temurin"
java-version: 17
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
Expand Down

0 comments on commit c04289c

Please sign in to comment.