From 269b038bfeb2f4298b9090bc1fce04431d9cd023 Mon Sep 17 00:00:00 2001 From: alexander-newman <68557969+alexander-newman@users.noreply.github.com> Date: Tue, 10 Dec 2024 14:28:11 -0800 Subject: [PATCH 1/3] [DPT-602] Add sbt-dependency-submission to expirements repo --- .github/workflows/dependency-graph.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/dependency-graph.yml diff --git a/.github/workflows/dependency-graph.yml b/.github/workflows/dependency-graph.yml new file mode 100644 index 0000000..f8c3a34 --- /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@v2 From 230b6d0f11ee19c33756cf49d14bd97e48103624 Mon Sep 17 00:00:00 2001 From: alexander-newman <68557969+alexander-newman@users.noreply.github.com> Date: Tue, 10 Dec 2024 14:43:37 -0800 Subject: [PATCH 2/3] update sbt-dependency-submission to v3 --- .github/workflows/dependency-graph.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dependency-graph.yml b/.github/workflows/dependency-graph.yml index f8c3a34..26621b6 100644 --- a/.github/workflows/dependency-graph.yml +++ b/.github/workflows/dependency-graph.yml @@ -12,4 +12,4 @@ jobs: with: fetch-depth: 0 - uses: sbt/setup-sbt@v1 - - uses: scalacenter/sbt-dependency-submission@v2 + - uses: scalacenter/sbt-dependency-submission@v3 From 51bd1efa3adf8ac3d86576249fc82608e6967ecf Mon Sep 17 00:00:00 2001 From: alexander-newman Date: Tue, 10 Dec 2024 14:58:01 -0800 Subject: [PATCH 3/3] add plugin --- project/plugins.sbt | 2 ++ 1 file changed, 2 insertions(+) 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")