Skip to content

Commit

Permalink
Merge pull request #11695 from mkurz/dependency-graph-avoid-double-su…
Browse files Browse the repository at this point in the history
…bmission

Avoid double submission of the dependency graph
  • Loading branch information
mkurz committed Feb 28, 2023
2 parents 3c21f31 + b5437ae commit 6aa434b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/dependency-graph.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@ permissions:

jobs:
dependency-graph:
name: submit dependencies
name: Submit dependencies to GitHub
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ inputs.ref }}
- uses: scalacenter/sbt-dependency-submission@v2 # for ./build.sbt in root folder
- uses: scalacenter/sbt-dependency-submission@v2 # for ./build.sbt in documentation folder
- uses: scalacenter/sbt-dependency-submission@v2
with:
# We submit ./documentation/build.sbt because the documentation project depends on the root project(s)
# anyway. In the end, all projects will be checked (including the dependencies of the documentation project).
working-directory: './documentation/'

0 comments on commit 6aa434b

Please sign in to comment.