diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f42b984..5c70a30 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.19, 2.13.8, 3.2.1] java: [temurin@8] project: [rootJVM] runs-on: ${{ matrix.os }} @@ -139,12 +139,12 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (2.12.15, rootJVM) + - name: Download target directories (2.12.19, rootJVM) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.15-rootJVM + name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.19-rootJVM - - name: Inflate target directories (2.12.15, rootJVM) + - name: Inflate target directories (2.12.19, rootJVM) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index 33fd1c1..1905ee2 100644 --- a/build.sbt +++ b/build.sbt @@ -12,7 +12,7 @@ ThisBuild / tlCiReleaseBranches := Seq("main") ThisBuild / scalaVersion := "2.13.8" ThisBuild / versionScheme := Some("early-semver") -ThisBuild / crossScalaVersions := Seq("2.12.15", "2.13.8", "3.2.1") +ThisBuild / crossScalaVersions := Seq("2.12.19", "2.13.8", "3.2.1") val catsV = "2.8.0" val catsEffectV = "3.4.2"