We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0dccbc commit 5be495dCopy full SHA for 5be495d
.github/workflows/validate.yml
@@ -22,6 +22,7 @@ jobs:
22
- 2.13.13
23
- 2.13.14
24
- 2.13.15
25
+ - 2.13.16
26
java: [8, 11, 17, 21]
27
28
steps:
build.sbt
@@ -47,7 +47,7 @@ lazy val defaults = Seq(
47
scalaVersion := crossScalaVersions.value.last,
48
crossScalaVersions := {
49
val supportedScala212Versions = (18 to 20).map(p => s"2.12.$p")
50
- val supportedScala213Versions = (11 to 15).map(p => s"2.13.$p")
+ val supportedScala213Versions = (11 to 16).map(p => s"2.13.$p")
51
supportedScala212Versions ++ supportedScala213Versions
52
},
53
scalaMajorVersion := CrossVersion.partialVersion(scalaVersion.value).get._2.toInt,
0 commit comments