Skip to content

Commit

Permalink
Update workflows to use Java 11. Since gradle + Jetpack Compose needs…
Browse files Browse the repository at this point in the history
… that version. (#33)
  • Loading branch information
CesarValiente authored Jun 23, 2021
1 parent a6b1024 commit d24ab96
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/publish_twopanelayout_ado.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,11 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8

- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 1.8
java-version: 11

- name: Cache Gradle packages
uses: actions/cache@v2
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/publish_twopanelayout_mavencentral.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,11 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8

- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 1.8
java-version: 11

- name: Cache Gradle packages
uses: actions/cache@v2
Expand Down

0 comments on commit d24ab96

Please sign in to comment.