Skip to content

Commit

Permalink
Add dependency_submission action
Browse files Browse the repository at this point in the history
  • Loading branch information
StefMa authored Jul 30, 2024
1 parent 98cf9b4 commit 1be43c0
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/dependency_submission.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Dependency Submission

on:
push:
branches: [ 'main' ]

jobs:
dependency-submission:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4

- name: Setup JDK 17
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '17'

- name: Generate and submit dependency graph
uses: gradle/actions/dependency-submission@v3

0 comments on commit 1be43c0

Please sign in to comment.