From 1b722649ff7fe295653162a0976d17e8f6fcbcb8 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 15 Sep 2021 02:20:18 +0200 Subject: [PATCH] Update scala-library to 2.12.15 --- .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 a30446d5..76bb76b0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: fail-fast: false matrix: java: [8, 11, 17-ea] - scala: [2.11.12, 2.12.14, 2.13.6, 3.0.2] + scala: [2.11.12, 2.12.15, 2.13.6, 3.0.2] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/build.sbt b/build.sbt index d2101c27..07282f51 100644 --- a/build.sbt +++ b/build.sbt @@ -17,7 +17,7 @@ lazy val parserCombinators = crossProject(JVMPlatform, JSPlatform, NativePlatfor name := "scala-parser-combinators", scalaModuleAutomaticModuleName := Some("scala.util.parsing"), - crossScalaVersions := Seq("2.13.6", "2.12.14", "2.11.12", "3.0.2"), + crossScalaVersions := Seq("2.13.6", "2.12.15", "2.11.12", "3.0.2"), scalaVersion := crossScalaVersions.value.head, libraryDependencies += "junit" % "junit" % "4.13.2" % Test,