Skip to content

Commit

Permalink
Update scala-library to 2.13.8
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward committed Jan 14, 2022
1 parent 8b285a6 commit 42af98f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [3.1.0, 2.12.15, 2.13.7]
scala: [3.1.0, 2.12.15, 2.13.8]
java: [temurin@17]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -60,12 +60,12 @@ jobs:
- run: sbt ++${{ matrix.scala }} fmtCheck test mimaReportBinaryIssues

- name: Scalafix tests
if: matrix.scala == '2.13.7'
if: matrix.scala == '2.13.8'
run: |
cd scalafix
sbt testCI
- if: matrix.scala == '2.13.7'
- if: matrix.scala == '2.13.8'
run: sbt ++${{ matrix.scala }} microsite/mdoc

- name: Compress target directories
Expand All @@ -84,7 +84,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.7]
scala: [2.13.8]
java: [temurin@17]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.7]
scala: [2.13.8]
java: [temurin@17]
runs-on: ${{ matrix.os }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ThisBuild / organizationName := "Functional Streams for Scala"
ThisBuild / homepage := Some(url("https://github.com/typelevel/fs2"))
ThisBuild / startYear := Some(2013)

val NewScala = "2.13.7"
val NewScala = "2.13.8"

ThisBuild / crossScalaVersions := Seq("3.1.0", "2.12.15", NewScala)

Expand Down Expand Up @@ -359,7 +359,7 @@ lazy val microsite = project
ThisBuild / githubWorkflowBuildPostamble ++= List(
WorkflowStep.Sbt(
List("microsite/mdoc"),
cond = Some(s"matrix.scala == '2.13.7'")
cond = Some(s"matrix.scala == '2.13.8'")
)
)

Expand Down

0 comments on commit 42af98f

Please sign in to comment.