From 1283c20093ca9e98259af1806c0487a669e99acd Mon Sep 17 00:00:00 2001 From: Hamza Remmal Date: Sat, 16 Aug 2025 20:37:12 +0200 Subject: [PATCH] chore: update the bisect tool to use the new repository --- project/scripts/bisect.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/scripts/bisect.scala b/project/scripts/bisect.scala index e721831e77cf..b4aaa3bcf7f7 100755 --- a/project/scripts/bisect.scala +++ b/project/scripts/bisect.scala @@ -179,7 +179,7 @@ object Releases: lazy val allReleases: Vector[Release] = val re = raw"(.+-bin-\d{8}-\w{7}-NIGHTLY)".r val xml = io.Source.fromURL( - "https://repo1.maven.org/maven2/org/scala-lang/scala3-compiler_3/maven-metadata.xml" + "https://repo.scala-lang.org/artifactory/maven-nightlies/org/scala-lang/scala3-compiler_3/maven-metadata.xml" ) re.findAllMatchIn(xml.mkString) .flatMap{ m => Option(m.group(1)).map(Release.apply) }