Skip to content

Commit

Permalink
Added GHA to send dependency graph (#85)
Browse files Browse the repository at this point in the history
* Added GHA to send dependency graph

* Use graalvm

* Task corrected

* trigger on master commit
  • Loading branch information
arnaualcazar authored Oct 22, 2024
1 parent d38295d commit 491b206
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:
push:
branches: ['master']

permissions:
contents: write

jobs:
dependency-submission:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: graalvm/setup-graalvm@v1
with:
java-version: 21

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

0 comments on commit 491b206

Please sign in to comment.