Skip to content

Commit

Permalink
Update scala3-library, ... to 3.1.3 (#1096)
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward authored Nov 21, 2022
1 parent 41c94bc commit 852ec7b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.12.17, 2.13.10, 3.1.2]
scala: [2.12.17, 2.13.10, 3.1.3]
java: [temurin@8]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
run: sbt '++ ${{ matrix.scala }}' validateJVM validateJS validateNative

- name: Build project (Scala 3)
if: matrix.scala == '3.1.2'
if: matrix.scala == '3.1.3'
run: sbt '++ ${{ matrix.scala }}' validateJVM30 validateJS30 validateNative30

- name: Codecov
Expand Down Expand Up @@ -153,12 +153,12 @@ jobs:
tar xf targets.tar
rm targets.tar
- name: Download target directories (3.1.2)
- name: Download target directories (3.1.3)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3.1.2
name: target-${{ matrix.os }}-${{ matrix.java }}-3.1.3

- name: Inflate target directories (3.1.2)
- name: Inflate target directories (3.1.3)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
2 changes: 1 addition & 1 deletion .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pull_request_rules:
- body~=labels:.*early-semver-patch
- status-success=Build and Test (ubuntu-latest, 2.12.17, temurin@8)
- status-success=Build and Test (ubuntu-latest, 2.13.10, temurin@8)
- status-success=Build and Test (ubuntu-latest, 3.1.2, temurin@8)
- status-success=Build and Test (ubuntu-latest, 3.1.3, temurin@8)
actions:
merge: {}
- name: Label benchmark PRs
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ val gitDevUrl = s"[email protected]:$gitHubOwner/$projectName.git"

val Scala_2_12 = "2.12.17"
val Scala_2_13 = "2.13.10"
val Scala_3 = "3.1.2"
val Scala_3 = "3.1.3"

val catsVersion = "2.8.0"
val jsonpathVersion = "2.7.0"
Expand Down Expand Up @@ -415,13 +415,13 @@ lazy val compileSettings = Def.settings(
"UTF-8",
"-feature",
"-language:existentials,experimental.macros,higherKinds,implicitConversions",
"-unchecked",
"-Xfatal-warnings"
"-unchecked"
),
scalacOptions ++= {
CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, minor)) if minor >= 12 =>
Seq(
"-Xfatal-warnings",
"-Xlint:-unused,_",
"-Ywarn-numeric-widen",
"-Ywarn-value-discard",
Expand Down

0 comments on commit 852ec7b

Please sign in to comment.