diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0d6e091..51707e8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.11, 2.12.18, 2.11.12] + scala: [2.13.12, 2.12.18, 2.11.12] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -46,15 +46,15 @@ jobs: run: sbt '++ ${{ matrix.scala }}' test - name: Generate Code Coverage Reports - if: matrix.scala == '2.13.11' + if: matrix.scala == '2.13.12' run: sbt '++ ${{ matrix.scala }}' clean coverage test - name: Aggregate Code Coverage Report - if: matrix.scala == '2.13.11' + if: matrix.scala == '2.13.12' run: sbt '++ ${{ matrix.scala }}' coverageAggregate - name: Upload Code Coverage Report - if: matrix.scala == '2.13.11' + if: matrix.scala == '2.13.12' uses: codecov/codecov-action@v3 with: token: ${{ secrets.CODECOV_TOKEN }} diff --git a/project/ScalaVer.scala b/project/ScalaVer.scala index 4007ce6..7213db2 100644 --- a/project/ScalaVer.scala +++ b/project/ScalaVer.scala @@ -9,7 +9,7 @@ object ScalaVer { case object _212 extends ScalaVer("2.12.18") - case object _213 extends ScalaVer("2.13.11") + case object _213 extends ScalaVer("2.13.12") val values: Seq[ScalaVer] = Set(_213, _212, _211).toSeq