Skip to content

Commit e533d0a

Browse files
committedAug 23, 2021
Update GitHub Action to work with Java 11
1 parent a9cee0f commit e533d0a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed
 

‎.github/workflows/android.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,11 @@ jobs:
2222
with:
2323
submodules: recursive
2424

25-
- name: Set up JDK 1.8
26-
uses: actions/setup-java@v1
25+
- name: Set up Java 11
26+
uses: actions/setup-java@v2
2727
with:
28-
java-version: 1.8
28+
distribution: 'adopt'
29+
java-version: '11'
2930

3031
- name: Build with Gradle
3132
run: ./gradlew build

0 commit comments

Comments
 (0)
Failed to load comments.