File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Dependency Submission
2
+
3
+ # See https://github.com/gradle/actions/blob/768a17f3488dc3fe0155ff431553e1f53d57e22e/dependency-submission/README.md#the-dependency-submission-action
4
+ # The action allows GitHub to alert about reported vulnerabilities in the project
5
+ on :
6
+ push :
7
+ branches :
8
+ - master
9
+
10
+ permissions :
11
+ contents : write
12
+
13
+ jobs :
14
+ dependency-submission :
15
+ name : Submit dependencies
16
+ runs-on : ubuntu-latest
17
+ steps :
18
+ - name : Checkout sources
19
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
20
+ - name : Set up JDK 21
21
+ uses : actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4
22
+ with :
23
+ distribution : zulu
24
+ java-version : 21
25
+ - name : Generate and submit dependency graph
26
+ uses : gradle/actions/dependency-submission@8379f6a1328ee0e06e2bb424dadb7b159856a326 # v4
You can’t perform that action at this time.
0 commit comments