Put the Gradle plugins' jar in the GitHub release, signed like the rest #51
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: Submit dependency graph | |
| on: | |
| push: | |
| branches: [ 'main' ] | |
| permissions: | |
| contents: write | |
| jobs: | |
| full-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: Set up a bootstrap JDK | |
| uses: actions/setup-java@de7274f081f381c8f8158605e0321c36c376e2e6 # v6.0.1 | |
| with: | |
| distribution: temurin | |
| java-version: '21' | |
| - name: Submit Dependency Snapshot | |
| uses: gradle/actions/dependency-submission@9c971963bec38e04b3d30dcc455b5382be2fdbfb # v6.3.0 | |
| env: | |
| # Only runtime-classpath dependencies of the published modules count as 'runtime'; | |
| # annotation processors, Gradle plugin classpaths and test-only dependencies are | |
| # reported as 'development' so Dependabot auto-triage rules can dismiss their alerts. | |
| DEPENDENCY_GRAPH_RUNTIME_INCLUDE_CONFIGURATIONS: 'runtimeClasspath' |