Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ jobs:
node-version: 12

- name: Setup MongoDB
uses: supercharge/mongodb-github-action@1.10.0
uses: supercharge/mongodb-github-action@1.12.0
with:
mongodb-version: 7.0
mongodb-version: 8.0
mongodb-replica-set: test-rs

- name: Check that workflows are up to date
Expand Down
8 changes: 2 additions & 6 deletions project/Commons.scala
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ import sbtide.Keys.*
import sbtunidoc.BaseUnidocPlugin.autoImport.{unidoc, unidocProjectFilter}
import sbtunidoc.ScalaUnidocPlugin
import sbtunidoc.ScalaUnidocPlugin.autoImport.ScalaUnidoc
import xerial.sbt.Sonatype
import xerial.sbt.Sonatype.autoImport.{sonatypeCredentialHost, sonatypeProfileName}

object Commons extends ProjectGroup("commons") {
// We need to generate slightly different structure for IntelliJ in order to better support ScalaJS cross projects.
Expand Down Expand Up @@ -58,7 +56,6 @@ object Commons extends ProjectGroup("commons") {
description := "AVSystem commons library for Scala",
startYear := Some(2015),
licenses := Vector(License.MIT),
sonatypeCredentialHost := Sonatype.sonatypeCentralHost,
scmInfo := Some(ScmInfo(
browseUrl = url("https://github.com/AVSystem/scala-commons"),
connection = "scm:git:git@github.com:AVSystem/scala-commons.git",
Expand All @@ -82,10 +79,10 @@ object Commons extends ProjectGroup("commons") {
params = Map("node-version" -> "12")
),
WorkflowStep.Use(
UseRef.Public("supercharge", "mongodb-github-action", "1.10.0"),
UseRef.Public("supercharge", "mongodb-github-action", "1.12.0"),
name = Some("Setup MongoDB"),
params = Map(
"mongodb-version" -> "7.0",
"mongodb-version" -> "8.0",
"mongodb-replica-set" -> "test-rs",
)
),
Expand Down Expand Up @@ -137,7 +134,6 @@ object Commons extends ProjectGroup("commons") {
apiURL := Some(url("http://avsystem.github.io/scala-commons/api")),
autoAPIMappings := true,

sonatypeProfileName := "com.avsystem",
pomIncludeRepository := { _ => false },

libraryDependencies ++= Seq(
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# suppress inspection "UnusedProperty"
sbt.version=1.10.11
sbt.version=1.11.1
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.19.0")
addSbtPlugin("org.scala-js" % "sbt-jsdependencies" % "1.0.2")
addSbtPlugin("org.jetbrains.scala" % "sbt-ide-settings" % "1.1.2")
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.7")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.3")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.1")
addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.4")
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.4")
Expand Down