Skip to content

Commit

Permalink
Added GHA to send dependency graph
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaualcazar committed Oct 22, 2024
1 parent d38295d commit 47529f5
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/security-submit-dependecy-graph.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Generate and submit dependency graph for wave-cli
on:
pull_request:

permissions:
contents: write

jobs:
dependency-submission:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17

- name: Generate and submit dependency graph for wave-cli
uses: gradle/actions/dependency-submission@v4
with:
dependency-resolution-task: "dependencies"
additional-arguments: "--configuration runtimeClasspath"
dependency-graph: generate-and-submit

0 comments on commit 47529f5

Please sign in to comment.