Skip to content

Commit 1161327

Browse files
committed
Dependency updates
1 parent 881765f commit 1161327

File tree

6 files changed

+41
-32
lines changed

6 files changed

+41
-32
lines changed

.github/workflows/ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: CI
2+
on:
3+
pull_request:
4+
push:
5+
workflow_dispatch:
6+
jobs:
7+
test:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v1
12+
- name: Setup Scala
13+
uses: olafurpg/setup-scala@v10
14+
with:
15+
java-version: "adopt@1.8"
16+
- name: Coursier cache
17+
uses: coursier/cache-action@v5
18+
- name: Build and test
19+
run: |
20+
sbt -v -Dfile.encoding=UTF-8 +test
21+
rm -rf "$HOME/.ivy2/local" || true
22+
find $HOME/Library/Caches/Coursier/v1 -name "ivydata-*.properties" -delete || true
23+
find $HOME/.ivy2/cache -name "ivydata-*.properties" -delete || true
24+
find $HOME/.cache/coursier/v1 -name "ivydata-*.properties" -delete || true
25+
find $HOME/.sbt -name "*.lock" -delete || true

.github/workflows/scala-steward.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# This workflow will launch at 00:00 every Sunday
2+
name: Scala Steward
23
on:
34
schedule:
45
- cron: '0 0 * * 0'

.travis.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

build.sbt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
import sbtcrossproject.CrossPlugin.autoImport.{crossProject, CrossType}
22

33
// Scala versions
4-
val scala213 = "2.13.5"
5-
val scala212 = "2.12.13"
4+
val scala213 = "2.13.8"
5+
val scala212 = "2.12.15"
66
val scala211 = "2.11.12"
7-
val scala3 = List("3.0.0")
7+
val scala3 = List("3.1.0")
88
val scala2 = List(scala213, scala212, scala211)
99
val allScalaVersions = scala2 ::: scala3
1010

1111
ThisBuild / name := "reactify"
1212
ThisBuild / organization := "com.outr"
13-
ThisBuild / version := "4.0.6"
14-
ThisBuild / scalaVersion := "2.13.5"
13+
ThisBuild / version := "4.0.7-SNAPSHOT"
14+
ThisBuild / scalaVersion := scala213
1515
ThisBuild / crossScalaVersions := allScalaVersions
1616

1717
ThisBuild / publishTo := sonatypePublishTo.value
@@ -30,7 +30,7 @@ ThisBuild / developers := List(
3030
Developer(id="darkfrog", name="Matt Hicks", email="matt@matthicks.", url=url("http://matthicks.com"))
3131
)
3232

33-
val testyVersion: String = "1.0.6"
33+
val scalaTestVersion: String = "3.2.10"
3434

3535
lazy val reactify = crossProject(JVMPlatform, JSPlatform, NativePlatform)
3636
.crossType(CrossType.Pure)
@@ -39,7 +39,7 @@ lazy val reactify = crossProject(JVMPlatform, JSPlatform, NativePlatform)
3939
test / publishArtifact := false,
4040
testFrameworks += new TestFramework("munit.Framework"),
4141
libraryDependencies ++= Seq(
42-
"com.outr" %%% "testy" % testyVersion % Test
42+
"org.scalatest" %%% "scalatest" % "3.2.10" % "test"
4343
)
4444
)
4545
.jsSettings(

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.5.2
1+
sbt.version=1.6.1

project/plugins.sbt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.8.0")
1+
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.9.3")
22

3-
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.0.0")
4-
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.0.0")
5-
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.5.1")
6-
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.0")
3+
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.1.0")
4+
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.1.0")
5+
addSbtPlugin("org.scala-js"% "sbt-scalajs" % "1.8.0")
6+
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.2")
77

8-
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.7")
9-
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.1.1")
8+
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.10")
9+
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")

0 commit comments

Comments
 (0)