File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed
Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -84,13 +84,19 @@ type MarvinSCARemediationConfig struct {
8484 Repository string `toml:"repository"`
8585}
8686
87- //////////////////////////////////
87+ // ////////////////////////////////
8888// Marvin -> Analyzer -> Marvin //
89- //////////////////////////////////
89+ // ////////////////////////////////
90+ type DependencyChange struct {
91+ Package string `json:"package"`
92+ Version string `json:"version"`
93+ Target SCATarget `json:"sca_target"`
94+ }
9095
9196type SCAConfig struct {
92- SCATargets []SCATarget `json:"sca_targets"`
93- Files []string `json:"files"`
97+ SCATargets []SCATarget `json:"sca_targets"`
98+ Files []string `json:"files"`
99+ DependenciesChanged []DependencyChange `json:"dependencies_changed"`
94100}
95101
96102type SCATargetResult struct {
You can’t perform that action at this time.
0 commit comments