Skip to content

Commit

Permalink
Use Java 17 for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
marcauberer committed Sep 7, 2023
1 parent ccec06f commit 6089b5f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,15 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Make gradlew executable
run: chmod +x ./gradlew

- name: Set up JDK 17
uses: actions/setup-java@v2
with:
distribution: zulu
java-version: 17

- name: Android Build
run: ./gradlew assembleDebug
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
- name: Make gradlew executable
run: chmod +x ./gradlew

- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
distribution: zulu
java-version: 11
java-version: 17

- name: Prepare environment
env:
Expand Down

0 comments on commit 6089b5f

Please sign in to comment.