Skip to content

Commit 5eeebe1

Browse files
Update scala-library to 2.13.18 (#455)
1 parent 2f921f6 commit 5eeebe1

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.20, 2.13.17, 3.7.4]
27+
scala: [2.11.12, 2.12.20, 2.13.18, 3.7.4]
2828
java: [temurin@11, temurin@17]
2929
runs-on: ${{ matrix.os }}
3030
steps:
@@ -59,15 +59,15 @@ jobs:
5959
run: sbt '++ ${{ matrix.scala }}' test
6060

6161
- name: Generate Code Coverage Reports
62-
if: matrix.scala == '2.13.17'
62+
if: matrix.scala == '2.13.18'
6363
run: sbt '++ ${{ matrix.scala }}' clean coverage test
6464

6565
- name: Aggregate Code Coverage Report
66-
if: matrix.scala == '2.13.17'
66+
if: matrix.scala == '2.13.18'
6767
run: sbt '++ ${{ matrix.scala }}' coverageAggregate
6868

6969
- name: Upload Code Coverage Report
70-
if: matrix.scala == '2.13.17'
70+
if: matrix.scala == '2.13.18'
7171
uses: codecov/codecov-action@v3
7272
with:
7373
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.20"
4-
val scala213 = "2.13.17"
4+
val scala213 = "2.13.18"
55
val scala3 = "3.7.4"
66

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

0 commit comments

Comments
 (0)