Skip to content

Commit

Permalink
Adding dependency submission workflow (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejfuhrer authored Nov 4, 2024
1 parent cade45f commit 0ec548c
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/repository-maintenance.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Repository Maintenance

on:
push:
branches: [ 'main' ]
workflow_dispatch:

jobs:
dependency-submission:
name: Dependency Submission
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4.2.1
- uses: actions/setup-java@v4.4.0
name: Setup Java
with:
distribution: temurin
java-version: 17
- name: Generate and submit dependency graph
uses: gradle/actions/dependency-submission@v4.1.0
with:
gradle-version: wrapper
dependency-graph: generate-and-submit
# Include only relevant configurations
dependency-graph-include-configurations: '(implementation|api|compileClasspath|runtimeClasspath)'

0 comments on commit 0ec548c

Please sign in to comment.