File tree Expand file tree Collapse file tree 2 files changed +35
-0
lines changed Expand file tree Collapse file tree 2 files changed +35
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Set update schedule for GitHub Actions and Gradle dependencies
2
+
3
+ version : 2
4
+ updates :
5
+ # Updates for GitHub Actions
6
+ - package-ecosystem : " github-actions"
7
+ directory : " /"
8
+ schedule :
9
+ interval : " weekly"
10
+ # Updates for Gradle dependencies
11
+ - package-ecosystem : " gradle"
12
+ directory : " /"
13
+ schedule :
14
+ interval : " weekly"
Original file line number Diff line number Diff line change
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
+ - uses : actions/checkout@v4
15
+ - uses : actions/setup-java@v4
16
+ with :
17
+ distribution : temurin
18
+ java-version : 17
19
+
20
+ - name : Generate and submit dependency graph
21
+ uses : gradle/actions/dependency-submission@v3
You can’t perform that action at this time.
0 commit comments