diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de6285a..23a06b1 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] + scala: [2.12.20, 2.13.16] java: [zulu@8] runs-on: ${{ matrix.os }} steps: @@ -68,7 +68,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.15] + scala: [2.13.16] java: [zulu@8] runs-on: ${{ matrix.os }} steps: @@ -98,12 +98,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.15) + - name: Download target directories (2.13.16) uses: actions/download-artifact@v4 with: - name: target-${{ matrix.os }}-2.13.15-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.16-${{ matrix.java }} - - name: Inflate target directories (2.13.15) + - name: Inflate target directories (2.13.16) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index bd52e57..464e2a5 100644 --- a/build.sbt +++ b/build.sbt @@ -16,7 +16,7 @@ inThisBuild( ) // Build -ThisBuild / crossScalaVersions := Seq("2.12.20", "2.13.15") +ThisBuild / crossScalaVersions := Seq("2.12.20", "2.13.16") ThisBuild / scalaVersion := crossScalaVersions.value.last ThisBuild / githubWorkflowBuildPreamble ++= List( WorkflowStep.Sbt(List("scalafmtCheckAll"), name = Some("Check formatting"))