File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed
Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Dependency Submission
2+
3+ on :
4+ push :
5+ branches : [ main ]
6+
7+ permissions :
8+ contents : write
9+
10+ jobs :
11+ dependency-submission :
12+ runs-on : ubuntu-latest
13+ steps :
14+ - uses : actions/checkout@v4
15+
16+ - uses : actions/setup-java@v4
17+ with :
18+ distribution : temurin
19+ java-version : 21
20+
21+ - name : Generate and submit dependency graph
22+ uses : gradle/actions/dependency-submission@v4
23+ env :
24+ DEPENDENCY_GRAPH_INCLUDE_CONFIGURATIONS : " (?i)(^|:)(compileClasspath|runtimeClasspath|testCompileClasspath|testRuntimeClasspath)$"
25+ DEPENDENCY_GRAPH_EXCLUDE_CONFIGURATIONS : " (?i)(^|:)(classpath|.*PluginClasspath|kotlinCompilerClasspath|kaptClasspath|annotationProcessor|detachedConfiguration.*)$"
26+ DEPENDENCY_GRAPH_RUNTIME_INCLUDE_CONFIGURATIONS : " (?i)(^|:)runtimeClasspath$"
27+ DEPENDENCY_GRAPH_RUNTIME_EXCLUDE_CONFIGURATIONS : " (?i)(^|:)testRuntimeClasspath$"
You can’t perform that action at this time.
0 commit comments