Add dependency verification data #659
Workflow file for this run
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
| name: Dependency Submission | |
| on: [ push ] | |
| permissions: | |
| contents: write | |
| jobs: | |
| dependency-submission: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v5 | |
| - name: git clone gradlex-build-conventions | |
| uses: actions/checkout@v5 | |
| with: | |
| repository: gradlex-org/plugin-publish-conventions | |
| path: build/plugin-publish-conventions | |
| ref: new-convention-plugins | |
| - name: Generate and submit dependency graph | |
| uses: gradle/actions/dependency-submission@v5 | |
| with: | |
| build-scan-publish: true | |
| build-scan-terms-of-use-url: "https://gradle.com/help/legal-terms-of-use" | |
| build-scan-terms-of-use-agree: "yes" |