diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f4a157b..3db0aad 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.15, 2.13.8, 3.2.2] + scala: [2.12.15, 2.13.14, 3.2.2] java: [temurin@8] project: [rootJVM] runs-on: ${{ matrix.os }} @@ -102,7 +102,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.8] + scala: [2.13.14] java: [temurin@8] runs-on: ${{ matrix.os }} steps: @@ -149,12 +149,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.8, rootJVM) + - name: Download target directories (2.13.14, rootJVM) uses: actions/download-artifact@v3 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.8-rootJVM + name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.14-rootJVM - - name: Inflate target directories (2.13.8, rootJVM) + - name: Inflate target directories (2.13.14, rootJVM) run: | tar xf targets.tar rm targets.tar @@ -188,7 +188,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.8] + scala: [2.13.14] java: [temurin@8] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index c12daeb..4b72772 100644 --- a/build.sbt +++ b/build.sbt @@ -14,8 +14,8 @@ ThisBuild / tlCiReleaseBranches := Seq("main") ThisBuild / tlSonatypeUseLegacyHost := true -ThisBuild / crossScalaVersions := Seq("2.12.15", "2.13.8", "3.2.2") -ThisBuild / scalaVersion := "2.13.8" +ThisBuild / crossScalaVersions := Seq("2.12.15", "2.13.14", "3.2.2") +ThisBuild / scalaVersion := "2.13.14" ThisBuild / versionScheme := Some("early-semver") val catsV = "2.9.0"