From 527cd79e1b03e2ecd1142e0e2ea6be652863483b Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 12 Apr 2022 23:49:43 +0200 Subject: [PATCH] Update scala3-library, ... to 3.1.2 --- .github/workflows/ci.yml | 2 +- build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 53702b42..cfd98706 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: fail-fast: false matrix: java: [8, 11, 17] - scala: [2.11.12, 2.12.15, 2.13.8, 3.1.1] + scala: [2.11.12, 2.12.15, 2.13.8, 3.1.2] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/build.sbt b/build.sbt index 80199a05..69d0d205 100644 --- a/build.sbt +++ b/build.sbt @@ -27,7 +27,7 @@ lazy val parserCombinators = crossProject(JVMPlatform, JSPlatform, NativePlatfor name := "scala-parser-combinators", scalaModuleAutomaticModuleName := Some("scala.util.parsing"), - crossScalaVersions := Seq("2.13.8", "2.12.15", "2.11.12", "3.1.1"), + crossScalaVersions := Seq("2.13.8", "2.12.15", "2.11.12", "3.1.2"), scalaVersion := crossScalaVersions.value.head, libraryDependencies += "junit" % "junit" % "4.13.2" % Test,