File tree Expand file tree Collapse file tree 1 file changed +19
-6
lines changed Expand file tree Collapse file tree 1 file changed +19
-6
lines changed Original file line number Diff line number Diff line change @@ -2,12 +2,25 @@ name: Repository Maintenance
22
33on :
44 push :
5+ branches : [ 'main' ]
56 workflow_dispatch :
67
78jobs :
8- maintenance_workflow :
9- uses : getyourguide/java-actions/.github/workflows/reusable-java-repo-maintenance-workflow.yml@v1.1.0
10- name : Maintenance
11- secrets :
12- CODEARTIFACT_AUTH_TOKEN : ${{ secrets.CODEARTIFACT_AUTH_TOKEN }}
13-
9+ dependency-submission :
10+ name : Dependency Submission
11+ runs-on : ubuntu-latest
12+ steps :
13+ - name : Checkout sources
14+ uses : actions/checkout@v4.2.1
15+ - uses : actions/setup-java@v4.4.0
16+ name : Setup Java
17+ with :
18+ distribution : temurin
19+ java-version : 17
20+ - name : Generate and submit dependency graph
21+ uses : gradle/actions/dependency-submission@v4.1.0
22+ with :
23+ gradle-version : wrapper
24+ dependency-graph : generate-and-submit
25+ # Include only relevant configurations
26+ dependency-graph-include-configurations : ' (implementation|api|compileClasspath|runtimeClasspath)'
You can’t perform that action at this time.
0 commit comments