Commit 74403b1c authored by Tetiana Chupryna's avatar Tetiana Chupryna

Merge branch '339015-add-go-nuget-sbt-to-dependency-list-formatter' into 'master'

Add sbt, nuget, go to DependencyList::Formatter

See merge request gitlab-org/gitlab!72021
parents 2ca2fea2 e2907ff5
...@@ -48,6 +48,12 @@ module Gitlab ...@@ -48,6 +48,12 @@ module Gitlab
'PHP (Composer)' 'PHP (Composer)'
when 'conan' when 'conan'
'C/C++ (Conan)' 'C/C++ (Conan)'
when 'sbt'
'Scala (Sbt)'
when 'nuget'
'C# (Nuget)'
when 'go'
'Go (Go modules)'
else else
package_manager package_manager
end end
......
...@@ -99,6 +99,9 @@ RSpec.describe Gitlab::Ci::Parsers::Security::Formatters::DependencyList do ...@@ -99,6 +99,9 @@ RSpec.describe Gitlab::Ci::Parsers::Security::Formatters::DependencyList do
'maven' | 'Java (Maven)' 'maven' | 'Java (Maven)'
'composer' | 'PHP (Composer)' 'composer' | 'PHP (Composer)'
'conan' | 'C/C++ (Conan)' 'conan' | 'C/C++ (Conan)'
'sbt' | 'Scala (Sbt)'
'nuget' | 'C# (Nuget)'
'go' | 'Go (Go modules)'
'' | '' '' | ''
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment