diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e8438f0..7a952fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.11.12, 2.12.20, 2.13.16, 3.7.3] + scala: [2.11.12, 2.12.20, 2.13.17, 3.7.3] java: [temurin@11, temurin@17] runs-on: ${{ matrix.os }} steps: @@ -59,15 +59,15 @@ jobs: run: sbt '++ ${{ matrix.scala }}' test - name: Generate Code Coverage Reports - if: matrix.scala == '2.13.16' + if: matrix.scala == '2.13.17' run: sbt '++ ${{ matrix.scala }}' clean coverage test - name: Aggregate Code Coverage Report - if: matrix.scala == '2.13.16' + if: matrix.scala == '2.13.17' run: sbt '++ ${{ matrix.scala }}' coverageAggregate - name: Upload Code Coverage Report - if: matrix.scala == '2.13.16' + if: matrix.scala == '2.13.17' uses: codecov/codecov-action@v3 with: token: ${{ secrets.CODECOV_TOKEN }} diff --git a/project/ScalaVersions.scala b/project/ScalaVersions.scala index 7ee9853..9355530 100644 --- a/project/ScalaVersions.scala +++ b/project/ScalaVersions.scala @@ -1,7 +1,7 @@ object ScalaVersions { val scala211 = "2.11.12" val scala212 = "2.12.20" - val scala213 = "2.13.16" + val scala213 = "2.13.17" val scala3 = "3.7.3" def allScalaVersions(excluding: String => Boolean = _ => false): List[String] =