Skip to content

Commit 06e9b5e

Browse files
Update scala-library to 2.13.14 (#301)
1 parent 75510af commit 06e9b5e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
matrix:
2626
os: [ubuntu-latest]
27-
scala: [2.11.12, 2.12.19, 2.13.13, 3.4.1]
27+
scala: [2.11.12, 2.12.19, 2.13.14, 3.4.1]
2828
java: [temurin@11, temurin@17]
2929
runs-on: ${{ matrix.os }}
3030
steps:
@@ -56,15 +56,15 @@ jobs:
5656
run: sbt '++ ${{ matrix.scala }}' test
5757

5858
- name: Generate Code Coverage Reports
59-
if: matrix.scala == '2.13.13'
59+
if: matrix.scala == '2.13.14'
6060
run: sbt '++ ${{ matrix.scala }}' clean coverage test
6161

6262
- name: Aggregate Code Coverage Report
63-
if: matrix.scala == '2.13.13'
63+
if: matrix.scala == '2.13.14'
6464
run: sbt '++ ${{ matrix.scala }}' coverageAggregate
6565

6666
- name: Upload Code Coverage Report
67-
if: matrix.scala == '2.13.13'
67+
if: matrix.scala == '2.13.14'
6868
uses: codecov/codecov-action@v3
6969
with:
7070
token: ${{ secrets.CODECOV_TOKEN }}

project/ScalaVersions.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
object ScalaVersions {
22
val scala211 = "2.11.12"
33
val scala212 = "2.12.19"
4-
val scala213 = "2.13.13"
4+
val scala213 = "2.13.14"
55
val scala3 = "3.4.1"
66

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

0 commit comments

Comments
 (0)