We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2de8b7 commit d24d302Copy full SHA for d24d302
.github/workflows/ci.yml
@@ -12,21 +12,19 @@ jobs:
12
name: Build and Run
13
strategy:
14
matrix:
15
- java:
16
- - adopt@1.8.0-275
17
- - adopt@1.11.0-9
18
- - adopt@1.15.0-1
+ java-version: [8, 11, 17]
19
runs-on: ubuntu-latest
20
steps:
21
- name: Checkout current branch (full)
22
uses: actions/checkout@v2
23
with:
24
fetch-depth: 0
25
26
- - name: Setup Java and Scala
27
- uses: olafurpg/setup-scala@v10
+ - name: Setup Java
+ uses: actions/setup-java@v2
28
29
- java-version: ${{ matrix.java }}
+ distribution: temurin
+ java-version: ${{ matrix.java-version }}
30
31
- name: Cache sbt
32
uses: actions/cache@v2
0 commit comments