File tree Expand file tree Collapse file tree 6 files changed +23
-18
lines changed
Expand file tree Collapse file tree 6 files changed +23
-18
lines changed Original file line number Diff line number Diff line change @@ -2,19 +2,24 @@ name: CI
22
33on :
44 push :
5- branches : [ master ]
5+ branches : [master, main ]
66 pull_request :
7- branches : [ master ]
7+ branches : [master, main ]
88
99jobs :
1010 build :
1111
1212 runs-on : ubuntu-latest
1313
1414 steps :
15- - uses : actions/checkout@v2
16- - name : Set up JDK 11
17- uses : actions/setup-java@v1
15+ - uses : actions/checkout@v4
1816 with :
19- java-version : 11
17+ fetch-depth : 0
18+ - name : Setup sbt
19+ uses : sbt/setup-sbt@v1
20+ - name : Set up JDK 21
21+ uses : actions/setup-java@v4
22+ with :
23+ distribution : temurin
24+ java-version : 21
2025 - run : ./ci/checksourcemaps.sh
Original file line number Diff line number Diff line change 1- sbt.version =1.9.8
1+ sbt.version =1.10.11
Original file line number Diff line number Diff line change 11ThisBuild / libraryDependencySchemes += " org.scala-lang.modules" %% " scala-xml" % VersionScheme .Always
22
33// needed for the tests (ci/checksourcemaps.sh)
4- addSbtPlugin(" org.foundweekends.giter8" % " sbt-giter8" % " 0.16.2 " )
4+ addSbtPlugin(" org.foundweekends.giter8" % " sbt-giter8" % " 0.17.0 " )
55// needed to make sbt-giter8 work with SBT >= v1.2.x
66libraryDependencies += { " org.scala-sbt" %% " scripted-plugin" % sbtVersion.value }
77
88// add the below dependencies in the template build, so that Scala Steward can update versions in the giter8 template
99addSbtPlugin(" com.vmunier" % " sbt-web-scalajs" % " 1.3.0" )
10- addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 1.15 .0" )
11- addSbtPlugin(" org.playframework" % " sbt-plugin" % " 3.0.1 " )
10+ addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 1.19 .0" )
11+ addSbtPlugin(" org.playframework" % " sbt-plugin" % " 3.0.7 " )
1212addSbtPlugin(" org.portable-scala" % " sbt-scalajs-crossproject" % " 1.3.2" )
13- addSbtPlugin(" com.typesafe .sbt" % " sbt-gzip" % " 1 .0.2 " )
14- addSbtPlugin(" com.typesafe .sbt" % " sbt-digest" % " 1 .1.4 " )
13+ addSbtPlugin(" com.github .sbt" % " sbt-gzip" % " 2 .0.0 " )
14+ addSbtPlugin(" com.github .sbt" % " sbt-digest" % " 2 .1.0 " )
Original file line number Diff line number Diff line change 11ThisBuild / organization := " $organization$"
2- ThisBuild / scalaVersion := " 2.13.12 "
2+ ThisBuild / scalaVersion := " 2.13.16 "
33ThisBuild / version := " 0.1.0-SNAPSHOT"
44
55lazy val root = (project in file(" ." ))
Original file line number Diff line number Diff line change 1- sbt.version =1.9.8
1+ sbt.version =1.10.11
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ ThisBuild / libraryDependencySchemes += "org.scala-lang.modules" %% "scala-xml"
44logLevel := Level .Warn
55
66addSbtPlugin(" com.vmunier" % " sbt-web-scalajs" % " 1.3.0" )
7- addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 1.15 .0" )
8- addSbtPlugin(" org.playframework" % " sbt-plugin" % " 3.0.1 " )
7+ addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 1.19 .0" )
8+ addSbtPlugin(" org.playframework" % " sbt-plugin" % " 3.0.7 " )
99addSbtPlugin(" org.portable-scala" % " sbt-scalajs-crossproject" % " 1.3.2" )
10- addSbtPlugin(" com.typesafe .sbt" % " sbt-gzip" % " 1 .0.2 " )
11- addSbtPlugin(" com.typesafe .sbt" % " sbt-digest" % " 1 .1.4 " )
10+ addSbtPlugin(" com.github .sbt" % " sbt-gzip" % " 2 .0.0 " )
11+ addSbtPlugin(" com.github .sbt" % " sbt-digest" % " 2 .1.0 " )
You can’t perform that action at this time.
0 commit comments