diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 13e300a..635ae54 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.10, 2.12.17] + scala: [2.13.11, 2.12.17] java: [temurin@11] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index bb3bdee..18da655 100644 --- a/build.sbt +++ b/build.sbt @@ -10,7 +10,7 @@ lazy val filterScalacOptions = { options: Seq[String] => } // for sbt-github-actions -ThisBuild / crossScalaVersions := Seq("2.13.10", "2.12.17") +ThisBuild / crossScalaVersions := Seq("2.13.11", "2.12.17") ThisBuild / githubWorkflowBuild := Seq( WorkflowStep.Sbt(name = Some("Check project"), commands = List("scalafmtCheckAll", "headerCheckAll")), WorkflowStep.Sbt(name = Some("Build project"), commands = List("test", "it:test"))