diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 391bd06..f3fa87e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.18, 2.13.11, 3.3.0] + scala: [2.12.19, 2.13.11, 3.3.0] java: [temurin@8] project: [rootJVM] runs-on: ${{ matrix.os }} @@ -138,12 +138,12 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (2.12.18, rootJVM) + - name: Download target directories (2.12.19, rootJVM) uses: actions/download-artifact@v3 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.18-rootJVM + name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.19-rootJVM - - name: Inflate target directories (2.12.18, 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 2426312..1546a82 100644 --- a/build.sbt +++ b/build.sbt @@ -15,7 +15,7 @@ ThisBuild / tlCiReleaseBranches := Seq("main") // true by default, set to false to publish to s01.oss.sonatype.org ThisBuild / tlSonatypeUseLegacyHost := true -ThisBuild / crossScalaVersions := Seq("2.12.18", "2.13.11", "3.3.0") +ThisBuild / crossScalaVersions := Seq("2.12.19", "2.13.11", "3.3.0") val catsV = "2.7.0" val catsEffectV = "3.5.0"