Skip to content

Commit d24d302

Browse files
committed
Update build
1 parent d2de8b7 commit d24d302

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,19 @@ jobs:
1212
name: Build and Run
1313
strategy:
1414
matrix:
15-
java:
16-
- adopt@1.8.0-275
17-
- adopt@1.11.0-9
18-
- adopt@1.15.0-1
15+
java-version: [8, 11, 17]
1916
runs-on: ubuntu-latest
2017
steps:
2118
- name: Checkout current branch (full)
2219
uses: actions/checkout@v2
2320
with:
2421
fetch-depth: 0
2522

26-
- name: Setup Java and Scala
27-
uses: olafurpg/setup-scala@v10
23+
- name: Setup Java
24+
uses: actions/setup-java@v2
2825
with:
29-
java-version: ${{ matrix.java }}
26+
distribution: temurin
27+
java-version: ${{ matrix.java-version }}
3028

3129
- name: Cache sbt
3230
uses: actions/cache@v2

0 commit comments

Comments
 (0)