From 34ebd8c2c75ccb4c992ba418121b94904fbdec4d Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Tue, 5 Mar 2024 21:06:12 +0100 Subject: [PATCH] Update scala-library, scala-reflect to 2.13.13 (#347) Co-authored-by: Andriy Onyshchuk --- .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 af511cc..6683fad 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.12, 2.12.19, 2.11.12] + scala: [2.13.13, 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.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/ScalaVer.scala b/project/ScalaVer.scala index 7a1bb66..0fe4745 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.12") + case object _213 extends ScalaVer("2.13.13") val values: Seq[ScalaVer] = Set(_213, _212, _211).toSeq