Skip to content

Commit

Permalink
Merge pull request #189 from scala-steward/update/scala-library-2.13.7
Browse files Browse the repository at this point in the history
Update scala-library to 2.13.7
  • Loading branch information
rossabaker authored Jan 2, 2022
2 parents 4cc3c5b + 9abb787 commit ecf2183
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 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: [2.12.15, 2.13.6, 3.0.2]
scala: [2.12.15, 2.13.7, 3.0.2]
java: [adopt@1.8]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -66,8 +66,8 @@ jobs:

- run: sbt ++${{ matrix.scala }} ci

- if: matrix.scala == '2.13.6'
run: sbt ++${{ matrix.scala }} ++2.13.6 site/makeMicrosite
- if: matrix.scala == '2.13.7'
run: sbt ++${{ matrix.scala }} ++2.13.7 site/makeMicrosite

- name: Compress target directories
run: tar cf targets.tar testing/.jvm/target core/.js/target testing/.js/target core/.jvm/target tests/js/target tests/jvm/target target bench/target project/target
Expand All @@ -85,7 +85,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.6]
scala: [2.13.7]
java: [adopt@1.8]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -121,12 +121,12 @@ jobs:
tar xf targets.tar
rm targets.tar
- name: Download target directories (2.13.6)
- name: Download target directories (2.13.7)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-2.13.6-${{ matrix.java }}
name: target-${{ matrix.os }}-2.13.7-${{ matrix.java }}

- name: Inflate target directories (2.13.6)
- name: Inflate target directories (2.13.7)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ lazy val commonSettings = Seq(
headerLicenseStyle := HeaderLicenseStyle.SpdxSyntax
) ++ automateHeaderSettings(Compile, Test)

val Scala213 = "2.13.6"
val Scala213 = "2.13.7"
val Scala213Cond = s"matrix.scala == '$Scala213'"

// General Settings
Expand Down

0 comments on commit ecf2183

Please sign in to comment.