diff --git a/.github/workflows/dependency-graph.yml b/.github/workflows/dependency-graph.yml new file mode 100644 index 0000000..26621b6 --- /dev/null +++ b/.github/workflows/dependency-graph.yml @@ -0,0 +1,15 @@ +name: Update Dependency Graph +on: + push: + branches: + - main +jobs: + dependency-graph: + name: Update Dependency Graph + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - uses: sbt/setup-sbt@v1 + - uses: scalacenter/sbt-dependency-submission@v3 diff --git a/project/plugins.sbt b/project/plugins.sbt index 358f0d3..ad9fda5 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -3,3 +3,5 @@ addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.4") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2") addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.7") + +addSbtPlugin("ch.epfl.scala" % "sbt-github-dependency-submission" % "3.1.0")