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 cade45f commit 0ec548cCopy full SHA for 0ec548c
.github/workflows/repository-maintenance.yml
@@ -0,0 +1,26 @@
1
+name: Repository Maintenance
2
+
3
+on:
4
+ push:
5
+ branches: [ 'main' ]
6
+ workflow_dispatch:
7
8
+jobs:
9
+ dependency-submission:
10
+ name: Dependency Submission
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout sources
14
+ uses: actions/checkout@v4.2.1
15
+ - uses: actions/setup-java@v4.4.0
16
+ name: Setup Java
17
+ with:
18
+ distribution: temurin
19
+ java-version: 17
20
+ - name: Generate and submit dependency graph
21
+ uses: gradle/actions/dependency-submission@v4.1.0
22
23
+ gradle-version: wrapper
24
+ dependency-graph: generate-and-submit
25
+ # Include only relevant configurations
26
+ dependency-graph-include-configurations: '(implementation|api|compileClasspath|runtimeClasspath)'
0 commit comments