Skip to content

Commit 09c8662

Browse files
GHA to submit dependency graph to Github (#715)
* GHA to submit dependency graph to Github * Generate graph on every push to master * change tower to wave Signed-off-by: munishchouhan <[email protected]> * changed for testing Signed-off-by: munishchouhan <[email protected]> * Revert "changed for testing" This reverts commit 6fee4f9. --------- Signed-off-by: munishchouhan <[email protected]> Co-authored-by: munishchouhan <[email protected]>
1 parent cd16cfd commit 09c8662

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Generate and submit dependency graph for wave
2+
on:
3+
push:
4+
branches: ['master']
5+
6+
permissions:
7+
contents: write
8+
9+
jobs:
10+
dependency-submission:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-java@v4
15+
with:
16+
distribution: temurin
17+
java-version: 17
18+
19+
- name: Generate and submit dependency graph for wave
20+
uses: gradle/actions/dependency-submission@v4
21+
with:
22+
dependency-resolution-task: "dependencies"
23+
additional-arguments: "--configuration runtimeClasspath"
24+
dependency-graph: generate-and-submit

0 commit comments

Comments
 (0)