Skip to content

Commit

Permalink
Update scala-library to 2.13.13 (#290)
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward authored Feb 29, 2024
1 parent b77516e commit a95c9a4
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 @@ -24,7 +24,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.11.12, 2.12.19, 2.13.12, 3.3.1]
scala: [2.11.12, 2.12.19, 2.13.13, 3.3.1]
java: [temurin@11, temurin@17]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -56,15 +56,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 }}
2 changes: 1 addition & 1 deletion project/ScalaVersions.scala
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
object ScalaVersions {
val scala211 = "2.11.12"
val scala212 = "2.12.19"
val scala213 = "2.13.12"
val scala213 = "2.13.13"
val scala3 = "3.3.1"

def allScalaVersions(excluding: String => Boolean = _ => false): List[String] =
Expand Down

0 comments on commit a95c9a4

Please sign in to comment.