File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed
modules/core/src/test/scala/org/scalasteward/core/update/artifact Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 34
34
timeout-minutes : 60
35
35
steps :
36
36
- name : Install sbt
37
- if : contains(runner.os, 'macos')
38
- run : brew install sbt
37
+ uses : sbt/setup-sbt@v1
39
38
40
39
- name : Checkout current branch (full)
41
40
uses : actions/checkout@v4
@@ -120,8 +119,7 @@ jobs:
120
119
runs-on : ${{ matrix.os }}
121
120
steps :
122
121
- name : Install sbt
123
- if : contains(runner.os, 'macos')
124
- run : brew install sbt
122
+ uses : sbt/setup-sbt@v1
125
123
126
124
- name : Checkout current branch (full)
127
125
uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ class ArtifactMigrationsFinderTest extends FunSuite {
151
151
test(" migrateDependency: sbt-dynver with migration" ) {
152
152
val dependency = (" com.dwijnand" .g % " sbt-dynver" .a % " 4.1.1" )
153
153
.copy(sbtVersion = Some (SbtVersion (" 1.0" )), scalaVersion = Some (ScalaVersion (" 2.12" )))
154
- val expected = (dependency %> Nel .of(" 5.0.1 " )).single
154
+ val expected = (dependency %> Nel .of(" 5.1.0 " )).single
155
155
.copy(newerGroupId = Some (" com.github.sbt" .g), newerArtifactId = Some (" sbt-dynver" ))
156
156
val obtained = updateAlg
157
157
.findUpdates(
Original file line number Diff line number Diff line change @@ -11,6 +11,6 @@ addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.7")
11
11
addSbtPlugin(" org.portable-scala" % " sbt-scalajs-crossproject" % " 1.3.2" )
12
12
addSbtPlugin(" org.scalameta" % " sbt-mdoc" % " 2.6.1" )
13
13
addSbtPlugin(" org.scoverage" % " sbt-scoverage" % " 2.2.1" )
14
- addSbtPlugin(" org.typelevel" % " sbt-typelevel-mergify" % " 0.7.3 " )
14
+ addSbtPlugin(" org.typelevel" % " sbt-typelevel-mergify" % " 0.7.4 " )
15
15
16
16
ThisBuild / evictionErrorLevel := Level .Info
You can’t perform that action at this time.
0 commit comments