File tree 3 files changed +46
-7
lines changed
3 files changed +46
-7
lines changed Original file line number Diff line number Diff line change @@ -56,11 +56,11 @@ jobs:
56
56
java-version : 11
57
57
if : matrix.language == 'java'
58
58
59
- # Submit dependency graph Step 1
60
- - name : Generate and save dependency graph
61
- uses : gradle/actions/dependency-submission@v3
62
- with :
63
- dependency-graph : generate-and-upload
59
+ # # Submit dependency graph Step 1
60
+ # - name: Generate and save dependency graph
61
+ # uses: gradle/actions/dependency-submission@v3
62
+ # with:
63
+ # dependency-graph: generate-and-upload
64
64
65
65
# https://docs.gradle.org/current/userguide/performance.html
66
66
- name : Build
Original file line number Diff line number Diff line change
1
+ #
2
+ # Licensed to the Apache Software Foundation (ASF) under one or more
3
+ # contributor license agreements. See the NOTICE file distributed with
4
+ # this work for additional information regarding copyright ownership.
5
+ # The ASF licenses this file to You under the Apache License, Version 2.0
6
+ # (the "License"); you may not use this file except in compliance with
7
+ # the License. You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+ #
17
+
18
+ name : Generate and save dependency graph
19
+
20
+ on :
21
+ pull_request :
22
+
23
+ permissions :
24
+ contents : read # 'write' permission is not available
25
+
26
+ jobs :
27
+ dependency-submission :
28
+ runs-on : ubuntu-latest
29
+ steps :
30
+ - uses : actions/checkout@v4
31
+ - uses : actions/setup-java@v4
32
+ with :
33
+ distribution : zulu
34
+ java-version : 11
35
+
36
+ - name : Generate and save dependency graph
37
+ uses : gradle/actions/dependency-submission@v3
38
+ with :
39
+ dependency-graph : generate-and-upload
Original file line number Diff line number Diff line change 16
16
#
17
17
18
18
# https://github.com/gradle/actions/blob/main/docs/dependency-submission.md#usage-with-pull-requests-from-public-forked-repositories
19
- name : Submit dependency graph
19
+ name : Download and submit dependency graph
20
20
21
21
on :
22
22
workflow_run :
23
- workflows : [ 'CodeQL ' ]
23
+ workflows : [ 'Generate and save dependency graph ' ]
24
24
types : [ completed ]
25
25
26
26
permissions :
You can’t perform that action at this time.
0 commit comments