Upgraded OpenTelemetry version #13
This file contains hidden or 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
| # | |
| # Uses the sbt-dependency-submission GitHub Action to update the dependency graph on GitHub. | |
| # | |
| # This makes Dependabot alerts possible. However, Dependabot security updates and Dependabot version updates for sbt dependencies remain unavailable because Dependabot does not support sbt. | |
| # | |
| name: Update Dependency Graph | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: write # Required to submit the dependency graph to GitHub. | |
| jobs: | |
| dependency-graph: | |
| name: Update Dependency Graph | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: sbt/setup-sbt@v1 | |
| - uses: scalacenter/sbt-dependency-submission@v3 |