summaryrefslogtreecommitdiff
path: root/lib/security/ci_configuration/dependency_scanning_build_action.rb
blob: 3ee4ce4da62e327e722ff3f5480eb4e3aaae3998 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module Security
  module CiConfiguration
    class DependencyScanningBuildAction < BaseBuildAction
      private

      def update_existing_content!
        @existing_gitlab_ci_content['include'] = generate_includes
      end

      def template
        return 'Auto-DevOps.gitlab-ci.yml' if @auto_devops_enabled

        'Security/Dependency-Scanning.gitlab-ci.yml'
      end
    end
  end
end