Merge pull request #1473 from eed3si9n/wip/bump_io #20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .github/workflows/dependency-graph.yml | |
name: Submit Dependency Graph | |
on: | |
push: | |
branches: [1.10.x, develop] # default branch of the project | |
permissions: {} | |
jobs: | |
submit-graph: | |
permissions: | |
contents: write # to submit the dependency graph | |
name: Submit Dependency Graph | |
runs-on: ubuntu-latest # or windows-latest, or macOS-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: sbt/setup-sbt@v1 | |
- uses: scalacenter/sbt-dependency-submission@v3 |