This repository was archived by the owner on Jul 30, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 6
6
strategy :
7
7
fail-fast : false
8
8
matrix :
9
- scala : [2.13.4, 2.12.12 ]
10
- nodejs : [14.15.2 , 12.20.0 , 10.23.0 ]
9
+ scala : [2.13.4, 2.12.13 ]
10
+ nodejs : [14.15.4 , 12.20.1 , 10.23.1 ]
11
11
steps :
12
12
- uses : actions/checkout@v2
13
13
- uses : olafurpg/setup-scala@v10
Original file line number Diff line number Diff line change 1
1
lazy val scala213 = " 2.13.4"
2
- lazy val scala212 = " 2.12.12 "
2
+ lazy val scala212 = " 2.12.13 "
3
3
organization in ThisBuild := " net.exoego"
4
4
crossScalaVersions in ThisBuild := Seq (scala213, scala212)
5
5
scalaVersion in ThisBuild := scala213
@@ -29,9 +29,9 @@ lazy val core = (project in file("./core"))
29
29
libraryDependencies ++= Dependencies .core.value
30
30
)
31
31
32
- lazy val nodejs_v14 = createNodeVersionSpecificProject(" 14.15.2 " )
33
- lazy val nodejs_v12 = createNodeVersionSpecificProject(" 12.20.0 " )
34
- lazy val nodejs_v10 = createNodeVersionSpecificProject(" 10.23.0 " )
32
+ lazy val nodejs_v14 = createNodeVersionSpecificProject(" 14.15.4 " )
33
+ lazy val nodejs_v12 = createNodeVersionSpecificProject(" 12.20.1 " )
34
+ lazy val nodejs_v10 = createNodeVersionSpecificProject(" 10.23.1 " )
35
35
36
36
def createNodeVersionSpecificProject (nodeFullVersion : String ) = {
37
37
val majorVersion = nodeFullVersion.split(" \\ ." )(0 )
You can’t perform that action at this time.
0 commit comments