diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index efdf2556..3618c64f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.20, 2.13.15, 3.3.3] + scala: [2.12.20, 2.13.15, 3.3.4] java: [zulu@8] runs-on: ${{ matrix.os }} steps: @@ -111,12 +111,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.3.3) + - name: Download target directories (3.3.4) uses: actions/download-artifact@v4 with: - name: target-${{ matrix.os }}-3.3.3-${{ matrix.java }} + name: target-${{ matrix.os }}-3.3.4-${{ matrix.java }} - - name: Inflate target directories (3.3.3) + - name: Inflate target directories (3.3.4) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index b9f97dec..a0496a2c 100644 --- a/build.sbt +++ b/build.sbt @@ -6,7 +6,7 @@ import com.typesafe.tools.mima.core._ val isScala3 = Def.setting(scalaBinaryVersion.value == "3") // sbt-github-actions needs configuration in `ThisBuild` -ThisBuild / crossScalaVersions := Seq("2.12.20", "2.13.15", "3.3.3") +ThisBuild / crossScalaVersions := Seq("2.12.20", "2.13.15", "3.3.4") ThisBuild / scalaVersion := crossScalaVersions.value.tail.head ThisBuild / githubWorkflowBuildPreamble ++= List( WorkflowStep.Sbt(List("mimaReportBinaryIssues"), name = Some("Check binary compatibility")),