Skip to content

Commit

Permalink
add update dependency graph workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
stoneream committed Jan 24, 2024
1 parent 560b2f0 commit 1e3cc95
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/dependency-graph.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# ref : https://www.scala-lang.org/blog/2022/07/18/secure-your-dependencies-on-github.html
name: Update Dependency Graph

on:
push:
branches:
- main

jobs:
update-graph:
name: Update Dependency Graph
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: scalacenter/sbt-dependency-submission@v2
with:
working-directory: './'

0 comments on commit 1e3cc95

Please sign in to comment.