diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 71d6ce0..d76cea5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.19, 2.13.14] + scala: [2.12.20, 2.13.14] java: [zulu@8] runs-on: ${{ matrix.os }} steps: @@ -88,12 +88,12 @@ jobs: - name: Setup sbt uses: sbt/setup-sbt@v1 - - name: Download target directories (2.12.19) + - name: Download target directories (2.12.20) uses: actions/download-artifact@v4 with: - name: target-${{ matrix.os }}-2.12.19-${{ matrix.java }} + name: target-${{ matrix.os }}-2.12.20-${{ matrix.java }} - - name: Inflate target directories (2.12.19) + - name: Inflate target directories (2.12.20) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index e3f1d1a..344cff9 100644 --- a/build.sbt +++ b/build.sbt @@ -16,7 +16,7 @@ inThisBuild( ) // Build -ThisBuild / crossScalaVersions := Seq("2.12.19", "2.13.14") +ThisBuild / crossScalaVersions := Seq("2.12.20", "2.13.14") ThisBuild / scalaVersion := crossScalaVersions.value.last ThisBuild / githubWorkflowBuildPreamble ++= List( WorkflowStep.Sbt(List("scalafmtCheckAll"), name = Some("Check formatting"))