File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 1212 buildmavenDepTree :
1313 runs-on : ubuntu-latest
1414 steps :
15- - uses : actions/checkout@v4
15+ - name : Checkout code
16+ uses : actions/checkout@v4
1617 - name : Set up JDK 11
1718 uses : actions/setup-java@v4
1819 with :
2122 cache : ' maven'
2223 - name : Generate dependency tree
2324 run : |
24- find . -name "pom.xml" -execdir mvn dependency:tree -DoutputFile=maven_dep_tree.txt -Dmaven.test.skip=true \;
25+ find . -name "pom.xml" -execdir mvn -q dependency:tree -DoutputFile=maven_dep_tree.txt -Dmaven.test.skip=true \;
2526 - name : Create zip with all dependency trees
2627 run : find . -type f -name 'maven_dep_tree.txt' -exec zip -r deptree.zip {} +
2728 - name : Upload zip
4142 image : semgrep/semgrep
4243 if : (github.actor != 'dependabot[bot]')
4344 steps :
44- - uses : actions/checkout@v4
45+ - name : Checkout code
46+ uses : actions/checkout@v4
4547 - name : Download Maven Dependencies
4648 uses : actions/download-artifact@v4
4749 with :
You can’t perform that action at this time.
0 commit comments