Skip to content

Commit

Permalink
Use JDK 11 in github CI action
Browse files Browse the repository at this point in the history
  • Loading branch information
agologan committed Dec 8, 2021
1 parent 61ca40d commit 46e7cc4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: 1.8
java-version: '11'
distribution: 'adopt'

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

0 comments on commit 46e7cc4

Please sign in to comment.