From da74e0301765441fcc21097e7b50a0bb9a2b4f65 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Tue, 17 Sep 2024 00:29:24 +0200 Subject: [PATCH] Update scala-library, scala-reflect to 2.13.14 (#354) --- .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 97a6dbe..c03f729 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: @@ -49,15 +49,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