Skip to content

Commit

Permalink
Update dependencies (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
RustedBones committed Dec 26, 2022
1 parent d94ce45 commit c52ad90
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [3.1.1]
scala: [3.2.1]
java: [temurin@11]
runs-on: ${{ matrix.os }}
steps:
Expand Down
13 changes: 11 additions & 2 deletions build.sbt
@@ -1,9 +1,11 @@
import scala.annotation.nowarn

// General info
val username = "RustedBones"
val repo = "scout"

// for sbt-github-actions
ThisBuild / scalaVersion := "3.1.1"
ThisBuild / scalaVersion := "3.2.1"
ThisBuild / githubWorkflowBuild := Seq(
WorkflowStep.Sbt(name = Some("Check project"), commands = List("scalafmtCheckAll", "headerCheckAll")),
WorkflowStep.Sbt(name = Some("Build project"), commands = List("test", "IntegrationTest/test"))
Expand Down Expand Up @@ -31,7 +33,14 @@ lazy val commonSettings = Defaults.itSettings ++
),
publishMavenStyle := true,
Test / publishArtifact := false,
publishTo := Some(if (isSnapshot.value) Opts.resolver.sonatypeSnapshots else Opts.resolver.sonatypeStaging),
publishTo := {
val resolver = if (isSnapshot.value) {
Opts.resolver.sonatypeSnapshots: @nowarn("cat=deprecation")
} else {
Opts.resolver.sonatypeStaging
}
Some(resolver)
},
releasePublishArtifactsAction := PgpKeys.publishSigned.value,
credentials ++= (for {
username <- sys.env.get("SONATYPE_USERNAME")
Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Expand Up @@ -4,7 +4,7 @@ object Dependencies {

object Versions {
val MUnitCE3 = "1.0.7"
val Taxonomy = "1.1.0"
val Taxonomy = "1.2.0"
}

val Taxonomy = "fr.davit" %% "taxonomy-fs2" % Versions.Taxonomy
Expand Down

0 comments on commit c52ad90

Please sign in to comment.