File tree Expand file tree Collapse file tree 1 file changed +15
-6
lines changed Expand file tree Collapse file tree 1 file changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -11,26 +11,35 @@ jobs:
11
11
strategy :
12
12
matrix :
13
13
os : [ubuntu-latest, windows-latest]
14
- node-version : ['16 ']
15
- java : ['8 ']
14
+ node-version : ['22 ']
15
+ java : ['17 ']
16
16
17
17
runs-on : ${{ matrix.os }}
18
18
19
19
steps :
20
- - uses : actions/checkout@v3
20
+ - uses : actions/checkout@v4
21
21
- name : Use Node.js ${{ matrix.node-version }}
22
- uses : actions/setup-node@v3
22
+ uses : actions/setup-node@v4
23
23
with :
24
24
node-version : ${{ matrix.node-version }}
25
25
- name : Set up JDK ${{ matrix.java }}
26
- uses : actions/setup-java@v3
26
+ uses : actions/setup-java@v4
27
27
with :
28
28
distribution : ' adopt'
29
29
java-version : ${{ matrix.java }}
30
30
cache : ' sbt'
31
31
32
+ - name : Add SBT Options
33
+ run : |
34
+ mkdir -p ~/.config/sbt
35
+ echo --allow-empty > ~/.config/sbt/sbtopts
36
+
37
+ - uses : sbt/setup-sbt@v1
38
+ with :
39
+ sbt-runner-version : 1.8.0
40
+
32
41
- name : Cache dependencies
33
- uses : actions/cache@v3
42
+ uses : actions/cache@v4
34
43
with :
35
44
path : |
36
45
**/node_modules
You can’t perform that action at this time.
0 commit comments