Skip to content

Commit

Permalink
fix(CI): use Java 17
Browse files Browse the repository at this point in the history
Gradle does not support JDK 11 anymore
  • Loading branch information
rushiiMachine committed Jan 13, 2024
1 parent 16e502a commit 0efd525
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: set up JDK 11
- name: set up JDK 17
uses: actions/setup-java@v2
with:
java-version: 11
java-version: 17
distribution: 'zulu'
cache: 'gradle'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ jobs:
- name: Setup Android SDK
uses: android-actions/setup-android@v2

- name: Setup JDK 11
- name: Setup JDK 17
uses: actions/setup-java@v2
with:
java-version: 11
java-version: 17
distribution: zulu
cache: gradle

Expand Down

0 comments on commit 0efd525

Please sign in to comment.