Skip to content

Commit

Permalink
Update scala-library, scala-reflect to 2.13.14 (#354)
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward authored Sep 16, 2024
1 parent e7fe4e2 commit da74e03
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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 }}
2 changes: 1 addition & 1 deletion project/ScalaVer.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit da74e03

Please sign in to comment.