mirror of
https://github.com/sbt/sbt.git
synced 2026-09-05 17:25:23 +02:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
20 lines
659 B
YAML
20 lines
659 B
YAML
# .github/workflows/dependency-graph.yml
|
|
name: Submit Dependency Graph
|
|
on:
|
|
push:
|
|
branches: [1.12.x, develop]
|
|
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@v7
|
|
- uses: sbt/setup-sbt@v1
|
|
- uses: scalacenter/sbt-dependency-submission@v3
|
|
with:
|
|
modules-ignore: actions_2.13 command_2.13 main-settings_2.13 main_2.13 run_2.13 sbtroot_2.13 scripted-plugin_2.13 task-system_2.13 tasks_2.13 testing_2.13 zinc-lm-integration_2.13
|