diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1a6e854fef..5443795f7f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -314,7 +314,7 @@ jobs: dependency-submission: name: Submit Dependencies - if: github.event_name != 'pull_request' + if: github.event.repository.fork == false && github.event_name != 'pull_request' strategy: matrix: os: [ubuntu-latest] diff --git a/project/plugins.sbt b/project/plugins.sbt index a19f2794c1..90eccd41ea 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -val sbtTypelevelVersion = "0.7.2" +val sbtTypelevelVersion = "0.7.3" addSbtPlugin("org.typelevel" % "sbt-typelevel" % sbtTypelevelVersion) addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % sbtTypelevelVersion) addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.7") @@ -6,3 +6,5 @@ addSbtPlugin("com.github.tkawachi" % "sbt-doctest" % "0.10.0") addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0") addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.5") addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.12.0") + +libraryDependencySchemes += "com.lihaoyi" %% "geny" % VersionScheme.Always