Skip to content

Commit 5b9b5bf

Browse files
add dependency-submission workflow
1 parent c8fcdd5 commit 5b9b5bf

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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+
- name: Checkout sources
15+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # pin@v4
16+
- name: Setup Java
17+
uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73 # pin@v4
18+
with:
19+
distribution: 'temurin'
20+
java-version: '11'
21+
- name: Generate and submit dependency graph
22+
uses: gradle/actions/dependency-submission@d156388eb19639ec20ade50009f3d199ce1e2808 # pin@v4
23+
with:
24+
gradle-version: 7.5.1
25+
dependency-graph-exclude-configurations: '.*[Tt]est(Compile|Runtime)Classpath'
26+
dependency-graph-continue-on-failure: true
27+
build-scan-publish: true
28+
build-scan-terms-of-use-url: "https://gralde.com/help/legal-terms-of-use"
29+
build-scan-terms-of-use-agree: "yes"

0 commit comments

Comments
 (0)