File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -11,20 +11,23 @@ jobs:
11
11
include :
12
12
- os : ubuntu-latest
13
13
java : 8
14
+ distribution : zulu
14
15
runs-on : ${{ matrix.os }}
15
16
env :
16
17
# define Java options for both official sbt and sbt-extras
17
18
JAVA_OPTS : -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
18
19
JVM_OPTS : -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
19
20
steps :
20
21
- name : Checkout
21
- uses : actions/checkout@v3
22
+ uses : actions/checkout@v4
22
23
- name : Setup JDK
23
- uses : actions/setup-java@v3
24
+ uses : actions/setup-java@v4
24
25
with :
25
- distribution : temurin
26
+ distribution : " ${{ matrix.distribution }} "
26
27
java-version : " ${{ matrix.java }}"
27
28
cache : sbt
29
+ - name : Setup sbt
30
+ uses : sbt/setup-sbt@v1
28
31
- name : Build and test
29
32
run : |
30
33
sbt -v "mimaReportBinaryIssues; scalafmtCheckAll; shadedPackageBin; test;"
You can’t perform that action at this time.
0 commit comments