Update docs #85
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 | |
| with: | |
| # Only what ships goes into the graph. The published jars, the native image and the IntelliJ and | |
| # Eclipse plugins are all built from runtimeClasspath, and the formatter configuration the IntelliJ | |
| # plugin also bundles is open-java-format's runtimeClasspath again. The name is matched whole, so | |
| # testRuntimeClasspath stays out. Without the filter the graph holds every configuration the build | |
| # resolves, buildSrc with JReleaser and the root buildscript's plugins included, and Dependabot | |
| # raises alerts for all of it: marking a dependency 'development' does not stop an alert. | |
| dependency-graph-include-configurations: 'runtimeClasspath' |