We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ed42e69 + 6ee1266 commit df769f1Copy full SHA for df769f1
1 file changed
.github/workflows/dependency-graph.yml
@@ -0,0 +1,23 @@
1
+name: Update Dependency Graph for SBT
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+ workflow_dispatch:
7
+jobs:
8
+ dependency-graph:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout branch
12
+ id: checkout
13
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
14
+ - name: Install Scala
15
+ uses: guardian/setup-scala@v1
16
+ - name: Submit dependencies
17
+ id: submit
18
+ uses: scalacenter/sbt-dependency-submission@f43202114d7522a4b233e052f82c2eea8d658134 # v3.2.1
19
+ - name: Log snapshot for user validation
20
+ id: validate
21
+ run: cat ${{ steps.submit.outputs.snapshot-json-path }} | jq
22
+ permissions:
23
+ contents: write
0 commit comments