File tree Expand file tree Collapse file tree 2 files changed +4
-20
lines changed Expand file tree Collapse file tree 2 files changed +4
-20
lines changed Original file line number Diff line number Diff line change 22
22
strategy :
23
23
matrix :
24
24
os : [ubuntu-latest]
25
- scala : [2.12.14 ]
26
- java : [temurin@8, temurin@11, temurin@17 ]
25
+ scala : [2.12.15 ]
26
+ java : [temurin@8]
27
27
runs-on : ${{ matrix.os }}
28
28
steps :
29
29
- name : Checkout current branch (full)
38
38
distribution : temurin
39
39
java-version : 8
40
40
41
- - name : Setup Java (temurin@11)
42
- if : matrix.java == 'temurin@11'
43
- uses : actions/setup-java@v2
44
- with :
45
- distribution : temurin
46
- java-version : 11
47
-
48
- - name : Setup Java (temurin@17)
49
- if : matrix.java == 'temurin@17'
50
- uses : actions/setup-java@v2
51
- with :
52
- distribution : temurin
53
- java-version : 17
54
-
55
41
- name : Cache sbt
56
42
uses : actions/cache@v2
57
43
with :
Original file line number Diff line number Diff line change 1
1
import scala .collection .JavaConverters ._
2
2
3
- scalaVersion := " 2.12.15"
3
+ ThisBuild / scalaVersion := " 2.12.15"
4
4
5
5
sbtPlugin := true
6
6
crossSbtVersions := List (" 1.0.0" )
@@ -43,9 +43,7 @@ packageSrc / publishArtifact := false
43
43
ThisBuild / githubWorkflowPublishTargetBranches := Seq ()
44
44
45
45
ThisBuild / githubWorkflowJavaVersions := List (
46
- JavaSpec .temurin(" 8" ),
47
- JavaSpec .temurin(" 11" ),
48
- JavaSpec .temurin(" 17" )
46
+ JavaSpec .temurin(" 8" )
49
47
)
50
48
51
49
ThisBuild / githubWorkflowTargetBranches := Seq (" master" )
You can’t perform that action at this time.
0 commit comments