Skip to content

Commit

Permalink
chore(plugin): remove riskScore Task from runDepTrackWorkflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Mirwald committed Feb 1, 2024
1 parent aa8e816 commit 77c0707
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/main/kotlin/com/liftric/dtcp/DepTrackCompanionPlugin.kt
Original file line number Diff line number Diff line change
Expand Up @@ -87,14 +87,13 @@ class DepTrackCompanionPlugin : Plugin<Project> {
task.projectName.set(extension.projectName)
task.projectVersion.set(extension.projectVersion)
task.riskScore.set(extension.riskScoreData)
task.mustRunAfter(uploadVex)
}

project.tasks.register("runDepTrackWorkflow") { task ->
task.group = taskGroup
task.description =
"Runs uploadSbom, generateVex and uploadVex for CI/CD"
task.dependsOn(generateSbom, uploadSbom, generateVex, uploadVex, riskScore)
"Runs generateSbom, uploadSbom, generateVex, uploadVex for CI/CD integration"
task.dependsOn(generateSbom, uploadSbom, generateVex, uploadVex)
}

project.tasks.register("getOutdatedDependencies", GetOutdatedDependenciesTask::class.java) { task ->
Expand Down

0 comments on commit 77c0707

Please sign in to comment.