Skip to content

Commit 8dba607

Browse files
committed
Bump sbt-dependency-submission
Fix the build on 2.13.8 to submit the corresponding graphs: Remove 2.13.8 in the crossScalaVersions of sbt-dependency-graph scripted-sbt-redux and scripted-sbt because they depend on sbtProj.
1 parent 38125c5 commit 8dba607

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/dependency-graph.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,4 @@ jobs:
99
runs-on: ubuntu-latest # or windows-latest, or macOS-latest
1010
steps:
1111
- uses: actions/checkout@v3
12-
- uses: scalacenter/sbt-dependency-graph-action@v1
13-
with:
14-
scala-versions: 2.12.16
12+
- uses: scalacenter/sbt-dependency-submission@v2

build.sbt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -622,6 +622,7 @@ lazy val scriptedSbtReduxProj = (project in file("scripted-sbt-redux"))
622622
.dependsOn(sbtProj % "compile;test->test", commandProj, utilLogging, utilScripted)
623623
.settings(
624624
baseSettings,
625+
crossScalaVersions := Seq(baseScalaVersion),
625626
name := "Scripted sbt Redux",
626627
libraryDependencies ++= Seq(launcherInterface % "provided"),
627628
mimaSettings,
@@ -633,6 +634,7 @@ lazy val scriptedSbtOldProj = (project in file("scripted-sbt-old"))
633634
.dependsOn(scriptedSbtReduxProj)
634635
.settings(
635636
baseSettings,
637+
crossScalaVersions := Seq(baseScalaVersion),
636638
name := "Scripted sbt",
637639
mimaSettings,
638640
mimaBinaryIssueFilters ++= Seq(
@@ -660,6 +662,7 @@ lazy val dependencyTreeProj = (project in file("dependency-tree"))
660662
.settings(
661663
sbtPlugin := true,
662664
baseSettings,
665+
crossScalaVersions := Seq(baseScalaVersion),
663666
name := "sbt-dependency-tree",
664667
publishMavenStyle := true,
665668
// mimaSettings,

0 commit comments

Comments
 (0)