Skip to content

Commit 5d079a8

Browse files
committed
Dependency updates
1 parent f35e6ea commit 5d079a8

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
13-
- uses: coursier/setup-action@v1.2.0-M2
12+
- uses: actions/checkout@v4
13+
- uses: coursier/setup-action@v1.2.0
1414
with:
1515
jvm: temurin:1.21
1616
apps: sbt sbtn

build.sbt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import sbtcrossproject.CrossPlugin.autoImport.{CrossType, crossProject}
55

66
inThisBuild(
77
Seq(
8-
// scalaVersion := "3.4.2",
98
scalaVersion := "3.6.2",
109
// jitpack provides the env variable VERSION=<version being built> # A tag or commit
1110
// we make use of it so that the version in class metadata (this.getClass.getPackage.getSpecificationVersion)

project/Libs.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ object Libs {
77
val `dotty-cps-async` = dep("com.github.rssh" %%% "dotty-cps-async" % "0.9.23")
88
val `shim-scala-async-dotty-cps-async` = "com.github.rssh" %% "shim-scala-async-dotty-cps-async" % "0.9.17"
99

10-
private val pekkoVersion = "1.1.2"
10+
private val pekkoVersion = "1.1.3"
1111
val pekkoOrg = "org.apache.pekko"
1212
val `pekko-stream` = pekkoOrg %% "pekko-stream" % pekkoVersion
1313
val `pekko-actor-typed` = pekkoOrg %% "pekko-actor-typed" % pekkoVersion
@@ -33,7 +33,7 @@ object Libs {
3333

3434
val `tmt-typed` = dep("com.github.mushtaq.tmt-typed" %%% "tmt-typed" % "2548bb6")
3535

36-
private val rsocketVersion = "1.1.4"
36+
private val rsocketVersion = "1.1.5"
3737
val `rsocket-core` = "io.rsocket" % "rsocket-core" % rsocketVersion
3838
val `rsocket-transport-netty` = "io.rsocket" % "rsocket-transport-netty" % rsocketVersion
3939
}

project/plugins.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.4")
2-
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
2+
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.4")
33
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
4-
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.17.0")
4+
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.18.2")
55
addSbtPlugin("io.spray" % "sbt-revolver" % "0.10.0")
66
addSbtPlugin("com.timushev.sbt" % "sbt-rewarn" % "0.1.3")
77

88
libraryDependencies += "com.sun.activation" % "javax.activation" % "1.2.0"
9-
libraryDependencies += "io.github.bonigarcia" % "webdrivermanager" % "5.9.2"
9+
libraryDependencies += "io.github.bonigarcia" % "webdrivermanager" % "5.9.3"
1010
libraryDependencies += "org.scala-js" %% "scalajs-env-selenium" % "1.1.1"
1111

1212
scalacOptions ++= Seq(

0 commit comments

Comments
 (0)