Skip to content

Commit

Permalink
Update scala-library to 2.13.6 (typelevel#2407)
Browse files Browse the repository at this point in the history
Co-authored-by: mpilquist <mpilquist@gmail.com>
Co-authored-by: Lars Hupel <lars.hupel@mytum.de>
  • Loading branch information
3 people authored May 30, 2021
1 parent f96dad1 commit 73742f5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 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.0.0, 2.12.14, 2.13.5]
scala: [3.0.0, 2.12.14, 2.13.6]
java: [adopt@1.16]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:

- run: sbt --client '++${{ matrix.scala }}; fmtCheck; test; mimaReportBinaryIssues'

- if: matrix.scala == '2.13.5'
- if: matrix.scala == '2.13.6'
run: sbt --client '++${{ matrix.scala }}; microsite/mdoc'

- name: Compress target directories
Expand All @@ -76,7 +76,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.5]
scala: [2.13.6]
java: [adopt@1.16]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -122,12 +122,12 @@ jobs:
tar xf targets.tar
rm targets.tar
- name: Download target directories (2.13.5)
- name: Download target directories (2.13.6)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-2.13.5-${{ matrix.java }}
name: target-${{ matrix.os }}-2.13.6-${{ matrix.java }}

- name: Inflate target directories (2.13.5)
- name: Inflate target directories (2.13.6)
run: |
tar xf targets.tar
rm targets.tar
Expand All @@ -144,7 +144,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.5]
scala: [2.13.6]
java: [adopt@1.16]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -168,12 +168,12 @@ jobs:
tar xf targets.tar
rm targets.tar
- name: Download target directories (2.13.5)
- name: Download target directories (2.13.6)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-2.13.5-${{ matrix.java }}
name: target-${{ matrix.os }}-2.13.6-${{ matrix.java }}

- name: Inflate target directories (2.13.5)
- name: Inflate target directories (2.13.6)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ ThisBuild / organizationName := "Functional Streams for Scala"
ThisBuild / homepage := Some(url("https://github.com/typelevel/fs2"))
ThisBuild / startYear := Some(2013)

ThisBuild / crossScalaVersions := Seq("3.0.0", "2.12.14", "2.13.5")
ThisBuild / crossScalaVersions := Seq("3.0.0", "2.12.14", "2.13.6")

ThisBuild / githubWorkflowJavaVersions := Seq("adopt@1.16")

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

Expand Down

0 comments on commit 73742f5

Please sign in to comment.