Add scan color for different vuls (#719) #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Generate and submit dependency graph for wave | |
on: | |
push: | |
branches: ['master'] | |
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 | |
uses: gradle/actions/dependency-submission@v4 | |
with: | |
dependency-resolution-task: "dependencies" | |
additional-arguments: "--configuration runtimeClasspath" | |
dependency-graph: generate-and-submit |