Skip to content

Commit 0ec548c

Browse files
authored
Adding dependency submission workflow (#153)
1 parent cade45f commit 0ec548c

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Repository Maintenance
2+
3+
on:
4+
push:
5+
branches: [ 'main' ]
6+
workflow_dispatch:
7+
8+
jobs:
9+
dependency-submission:
10+
name: Dependency Submission
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout sources
14+
uses: actions/[email protected]
15+
- uses: actions/[email protected]
16+
name: Setup Java
17+
with:
18+
distribution: temurin
19+
java-version: 17
20+
- name: Generate and submit dependency graph
21+
uses: gradle/actions/[email protected]
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)'

0 commit comments

Comments
 (0)