blob: ddc7db282efd6e18a8e6046f16841212b648b5cc (
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 SastIacBuildAction < 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/SAST-IaC.latest.gitlab-ci.yml'
end
end
end
end
|