From 5c4e842aecc3eda8c69efa2546ade8a21cca12e9 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 5 May 2024 04:16:45 +0000 Subject: [PATCH] Update scala-library, scala-reflect to 2.13.14 --- .github/workflows/ci.yml | 8 ++++---- project/ScalaVer.scala | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6683fad..6f319be 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.13, 2.12.19, 2.11.12] + scala: [2.13.14, 2.12.19, 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.13' + if: matrix.scala == '2.13.14' run: sbt '++ ${{ matrix.scala }}' clean coverage test - name: Aggregate Code Coverage Report - if: matrix.scala == '2.13.13' + if: matrix.scala == '2.13.14' run: sbt '++ ${{ matrix.scala }}' coverageAggregate - name: Upload Code Coverage Report - if: matrix.scala == '2.13.13' + if: matrix.scala == '2.13.14' uses: codecov/codecov-action@v3 with: token: ${{ secrets.CODECOV_TOKEN }} diff --git a/project/ScalaVer.scala b/project/ScalaVer.scala index 0fe4745..2477660 100644 --- a/project/ScalaVer.scala +++ b/project/ScalaVer.scala @@ -9,7 +9,7 @@ object ScalaVer { case object _212 extends ScalaVer("2.12.19") - case object _213 extends ScalaVer("2.13.13") + case object _213 extends ScalaVer("2.13.14") val values: Seq[ScalaVer] = Set(_213, _212, _211).toSeq