Skip to content
This repository was archived by the owner on May 4, 2025. It is now read-only.

Commit 929cb44

Browse files
Update scala-library to 2.13.16
1 parent 3aac770 commit 929cb44

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

build.sc

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import io.kipp.mill.ci.release.SonatypeHost
1919

2020
val millVersions = Seq("0.12.4", "0.11.12", "0.10.15")
2121
val millBinaryVersions = millVersions.map(scalaNativeBinaryVersion)
22-
val scala213 = "2.13.14"
22+
val scala213 = "2.13.16"
2323
val artifactBase = "mill-github-dependency-graph"
2424

2525
def millBinaryVersion(millVersion: String) = scalaNativeBinaryVersion(
@@ -102,7 +102,7 @@ trait ItestCross extends Cross.Module[String] with MillIntegrationTestModule {
102102

103103
override def testInvocations: T[Seq[(PathRef, Seq[TestInvocation.Targets])]] =
104104
T {
105-
val env = if(millTestVersion() >= "0.12")
105+
val env = if (millTestVersion() >= "0.12")
106106
Map(
107107
"COURSIER_REPOSITORIES" -> s"central sonatype:releases ivy:file://${T.dest.toString.replaceFirst("testInvocations", "test")}/ivyRepo/local/[organisation]/[module]/[revision]/[type]s/[artifact].[ext]"
108108
)

itest/src/cyclical/build.sc

+5-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import munit.Assertions._
88

99
object overflow extends ScalaModule {
1010

11-
def scalaVersion = "2.13.14"
11+
def scalaVersion = "2.13.16"
1212

1313
// See https://github.com/ckipp01/mill-github-dependency-graph/issues/77 for the context
1414
// of this test. The main issue is that when you look at the children of this dep in coursier
@@ -21,7 +21,10 @@ object overflow extends ScalaModule {
2121
}
2222

2323
def checkManifest(ev: Evaluator) = T.command {
24-
val projectDir = Iterator.iterate(os.pwd)(_ / os.up).find(dir => os.exists(dir / "manifests.json")).get
24+
val projectDir = Iterator
25+
.iterate(os.pwd)(_ / os.up)
26+
.find(dir => os.exists(dir / "manifests.json"))
27+
.get
2528
val expected = ujson.read(os.read(projectDir / "manifests.json"))
2629

2730
val manifestMapping = Graph.generate(ev)()

0 commit comments

Comments
 (0)