Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-12-14 18:13:45 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-12-14 18:13:45 +0300
commitd7e72d98df261209772ce059e09381d36226913f (patch)
treea6f3ea3cd212d486de15d4e258585494589ee64e /app/models/ci
parent89a0c1fa668ec9af6e7cc39935199f24dbee23b6 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/models/ci')
-rw-r--r--app/models/ci/job_artifact.rb7
1 files changed, 5 insertions, 2 deletions
diff --git a/app/models/ci/job_artifact.rb b/app/models/ci/job_artifact.rb
index 2fd71fbe463..369737d78c8 100644
--- a/app/models/ci/job_artifact.rb
+++ b/app/models/ci/job_artifact.rb
@@ -58,7 +58,8 @@ module Ci
coverage_fuzzing: 'gl-coverage-fuzzing.json',
api_fuzzing: 'gl-api-fuzzing-report.json',
cyclonedx: 'gl-sbom.cdx.json',
- annotations: 'gl-annotations.json'
+ annotations: 'gl-annotations.json',
+ repository_xray: 'gl-repository-xray.json'
}.freeze
INTERNAL_TYPES = {
@@ -78,6 +79,7 @@ module Ci
lsif: :zip,
cyclonedx: :gzip,
annotations: :gzip,
+ repository_xray: :gzip,
# Security reports and license scanning reports are raw artifacts
# because they used to be fetched by the frontend, but this is not the case anymore.
@@ -221,7 +223,8 @@ module Ci
cluster_image_scanning: 27, ## EE-specific
cyclonedx: 28, ## EE-specific
requirements_v2: 29, ## EE-specific
- annotations: 30
+ annotations: 30,
+ repository_xray: 31 ## EE-specifric
}
# `file_location` indicates where actual files are stored.