diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f42b984..253d047 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.1] + scala: [2.12.15, 2.13.14, 3.2.1] 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@v2 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 33fd1c1..402be5c 100644 --- a/build.sbt +++ b/build.sbt @@ -10,9 +10,9 @@ ThisBuild / developers := List( ThisBuild / tlCiReleaseBranches := Seq("main") -ThisBuild / scalaVersion := "2.13.8" +ThisBuild / scalaVersion := "2.13.14" ThisBuild / versionScheme := Some("early-semver") -ThisBuild / crossScalaVersions := Seq("2.12.15", "2.13.8", "3.2.1") +ThisBuild / crossScalaVersions := Seq("2.12.15", "2.13.14", "3.2.1") val catsV = "2.8.0" val catsEffectV = "3.4.2"