diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 76ed438..7924367 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.18, 2.13.12, 3.3.1] + scala: [2.12.19, 2.13.12, 3.3.1] java: [temurin@8] runs-on: ${{ matrix.os }} steps: @@ -85,12 +85,12 @@ jobs: java-version: 8 cache: sbt - - name: Download target directories (2.12.18) + - name: Download target directories (2.12.19) uses: actions/download-artifact@v4 with: - name: target-${{ matrix.os }}-2.12.18-${{ matrix.java }} + name: target-${{ matrix.os }}-2.12.19-${{ matrix.java }} - - name: Inflate target directories (2.12.18) + - name: Inflate target directories (2.12.19) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index 0992f13..534f66c 100644 --- a/build.sbt +++ b/build.sbt @@ -13,7 +13,7 @@ val isScala3 = Def.setting( ) // sbt-github-actions needs configuration in `ThisBuild` -ThisBuild / crossScalaVersions := Seq("2.12.18", "2.13.12", "3.3.1") +ThisBuild / crossScalaVersions := Seq("2.12.19", "2.13.12", "3.3.1") ThisBuild / scalaVersion := crossScalaVersions.value.tail.head ThisBuild / githubWorkflowBuildPreamble ++= List( WorkflowStep.Sbt(List("mimaReportBinaryIssues"), name = Some("Check binary compatibility")),