We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa3772b commit 087c69cCopy full SHA for 087c69c
2 files changed
.github/workflows/main.yml
@@ -4,18 +4,20 @@ on:
4
push:
5
workflow_dispatch:
6
7
-env:
8
- LIBERICA_URL: https://download.bell-sw.com/java/17.0.3+7/bellsoft-jdk17.0.3+7-linux-amd64-full.tar.gz
9
-
10
jobs:
11
build-and-test:
12
runs-on: ubuntu-latest
13
steps:
14
- - uses: actions/checkout@v2
15
16
- - uses: olafurpg/setup-scala@v10
+ - uses: actions/setup-java@v5
17
with:
18
- java-version: liberica@17=tgz+${{ env.LIBERICA_URL }}
+ distribution: zulu
+ java-version: 21.0.2
+ java-package: jdk+fx
+ cache: sbt
+
+ - uses: sbt/setup-sbt@v1
19
20
- - run: sbt -v update compile
21
- - run: sbt -v test
+ - name: Build and Test
+ run: |
22
+ sbt -v update compile
23
+ sbt -v test
project/build.properties
@@ -1 +1 @@
1
-sbt.version=1.7.2
+sbt.version=1.10.1
0 commit comments