diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 15fd8dc..b51b4a0 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.19, 2.13.12, 3.3.1] + scala: [2.11.12, 2.12.19, 2.13.13, 3.3.1] java: [temurin@11, temurin@17] runs-on: ${{ matrix.os }} steps: @@ -56,15 +56,15 @@ jobs: run: sbt '++ ${{ matrix.scala }}' test - name: Generate Code Coverage Reports - if: matrix.scala == '2.13.12' + if: matrix.scala == '2.13.13' run: sbt '++ ${{ matrix.scala }}' clean coverage test - name: Aggregate Code Coverage Report - if: matrix.scala == '2.13.12' + if: matrix.scala == '2.13.13' run: sbt '++ ${{ matrix.scala }}' coverageAggregate - name: Upload Code Coverage Report - if: matrix.scala == '2.13.12' + if: matrix.scala == '2.13.13' uses: codecov/codecov-action@v3 with: token: ${{ secrets.CODECOV_TOKEN }} diff --git a/project/ScalaVersions.scala b/project/ScalaVersions.scala index 53a3f7e..14e986c 100644 --- a/project/ScalaVersions.scala +++ b/project/ScalaVersions.scala @@ -1,7 +1,7 @@ object ScalaVersions { val scala211 = "2.11.12" val scala212 = "2.12.19" - val scala213 = "2.13.12" + val scala213 = "2.13.13" val scala3 = "3.3.1" def allScalaVersions(excluding: String => Boolean = _ => false): List[String] =