We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a74e85 commit 340c673Copy full SHA for 340c673
.github/workflows/submit-dependencies.yaml
@@ -0,0 +1,24 @@
1
+name: Dependency Submission
2
+
3
+on:
4
+ push:
5
+ branches: ['master']
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
16
+ - name: Setup Java
17
+ uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0
18
+ with:
19
+ distribution: 'temurin'
20
+ java-version: 17
21
+ - name: Generate and submit dependency graph
22
+ uses: gradle/actions/dependency-submission@94baf225fe0a508e581a564467443d0e2379123b # v4.3.0
23
+ env:
24
+ DEPENDENCY_GRAPH_INCLUDE_PROJECTS: "^:(?!dd-smoke-tests|:buildSrc).*" # Accepts a regex pattern
0 commit comments