Skip to content

Commit e8dd833

Browse files
committed
Ignore any non LTS version
users should not be updated to non-LTS versions automatically
1 parent e1ed4e2 commit e8dd833

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

modules/core/src/main/resources/default.scala-steward.conf

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,12 @@ postUpdateHooks = [
3030
updates.ignore = [
3131
// Artifacts below are ignored because they are not yet announced.
3232

33-
// Ignore the next Scala 3 version until it is announced.
34-
{ groupId = "org.scala-lang", artifactId = "scala3-compiler", version = { exact = "3.4.0" } },
35-
{ groupId = "org.scala-lang", artifactId = "scala3-library", version = { exact = "3.4.0" } },
36-
{ groupId = "org.scala-lang", artifactId = "scala3-library_sjs1", version = { exact = "3.4.0" } },
33+
// No upgrades to non LTS versions
34+
{ groupId = "org.scala-lang", artifactId = "scala3-compiler", version = { prefix = "3.4." } },
35+
{ groupId = "org.scala-lang", artifactId = "scala3-library", version = { prefix = "3.4." } },
36+
{ groupId = "org.scala-lang", artifactId = "scala3-library_sjs1", version = { prefix = "3.4." } },
37+
38+
// Ignore the next Scala 3 LTS version until it is announced.
3739
{ groupId = "org.scala-lang", artifactId = "scala3-compiler", version = { exact = "3.3.4" } },
3840
{ groupId = "org.scala-lang", artifactId = "scala3-library", version = { exact = "3.3.4" } },
3941
{ groupId = "org.scala-lang", artifactId = "scala3-library_sjs1", version = { exact = "3.3.4" } },

0 commit comments

Comments
 (0)