Skip to content

Commit 852ec7b

Browse files
Update scala3-library, ... to 3.1.3 (#1096)
1 parent 41c94bc commit 852ec7b

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
os: [ubuntu-latest]
26-
scala: [2.12.17, 2.13.10, 3.1.2]
26+
scala: [2.12.17, 2.13.10, 3.1.3]
2727
java: [temurin@8]
2828
runs-on: ${{ matrix.os }}
2929
steps:
@@ -68,7 +68,7 @@ jobs:
6868
run: sbt '++ ${{ matrix.scala }}' validateJVM validateJS validateNative
6969

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

7474
- name: Codecov
@@ -153,12 +153,12 @@ jobs:
153153
tar xf targets.tar
154154
rm targets.tar
155155
156-
- name: Download target directories (3.1.2)
156+
- name: Download target directories (3.1.3)
157157
uses: actions/download-artifact@v2
158158
with:
159-
name: target-${{ matrix.os }}-${{ matrix.java }}-3.1.2
159+
name: target-${{ matrix.os }}-${{ matrix.java }}-3.1.3
160160

161-
- name: Inflate target directories (3.1.2)
161+
- name: Inflate target directories (3.1.3)
162162
run: |
163163
tar xf targets.tar
164164
rm targets.tar

.mergify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pull_request_rules:
1212
- body~=labels:.*early-semver-patch
1313
- status-success=Build and Test (ubuntu-latest, 2.12.17, temurin@8)
1414
- status-success=Build and Test (ubuntu-latest, 2.13.10, temurin@8)
15-
- status-success=Build and Test (ubuntu-latest, 3.1.2, temurin@8)
15+
- status-success=Build and Test (ubuntu-latest, 3.1.3, temurin@8)
1616
actions:
1717
merge: {}
1818
- name: Label benchmark PRs

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ val gitDevUrl = s"git@github.com:$gitHubOwner/$projectName.git"
1313

1414
val Scala_2_12 = "2.12.17"
1515
val Scala_2_13 = "2.13.10"
16-
val Scala_3 = "3.1.2"
16+
val Scala_3 = "3.1.3"
1717

1818
val catsVersion = "2.8.0"
1919
val jsonpathVersion = "2.7.0"
@@ -415,13 +415,13 @@ lazy val compileSettings = Def.settings(
415415
"UTF-8",
416416
"-feature",
417417
"-language:existentials,experimental.macros,higherKinds,implicitConversions",
418-
"-unchecked",
419-
"-Xfatal-warnings"
418+
"-unchecked"
420419
),
421420
scalacOptions ++= {
422421
CrossVersion.partialVersion(scalaVersion.value) match {
423422
case Some((2, minor)) if minor >= 12 =>
424423
Seq(
424+
"-Xfatal-warnings",
425425
"-Xlint:-unused,_",
426426
"-Ywarn-numeric-widen",
427427
"-Ywarn-value-discard",

0 commit comments

Comments
 (0)