Commit 3e052e14 authored by Rémy Coutable's avatar Rémy Coutable

Merge branch 'update-code-comment-security-reports-not-fetched-by-frontend' into 'master'

Tell Secure reports are no longer fetched by frontend (code comment)

See merge request gitlab-org/gitlab!44545
parents ce117b05 2f738cef
...@@ -66,11 +66,8 @@ module Ci ...@@ -66,11 +66,8 @@ module Ci
cluster_applications: :gzip, cluster_applications: :gzip,
lsif: :zip, lsif: :zip,
# All these file formats use `raw` as we need to store them uncompressed # Security reports and license scanning reports are raw artifacts
# for Frontend to fetch the files and do analysis # because they used to be fetched by the frontend, but this is not the case anymore.
# When they will be only used by backend, they can be `gzipped`.
accessibility: :raw,
codequality: :raw,
sast: :raw, sast: :raw,
secret_detection: :raw, secret_detection: :raw,
dependency_scanning: :raw, dependency_scanning: :raw,
...@@ -78,6 +75,12 @@ module Ci ...@@ -78,6 +75,12 @@ module Ci
dast: :raw, dast: :raw,
license_management: :raw, license_management: :raw,
license_scanning: :raw, license_scanning: :raw,
# All these file formats use `raw` as we need to store them uncompressed
# for Frontend to fetch the files and do analysis
# When they will be only used by backend, they can be `gzipped`.
accessibility: :raw,
codequality: :raw,
performance: :raw, performance: :raw,
browser_performance: :raw, browser_performance: :raw,
load_performance: :raw, load_performance: :raw,
......
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