Working on setting up a self-managed GitLab. I have a .gitlab-ci.yml with this excerpt:
include:
- template: Security/License-Scanning.gitlab-ci.yml
- template: Dependency-Scanning.gitlab-ci.yml
- template: SAST.gitlab-ci.yml
- template: Secret-Detection.gitlab-ci.yml
Each of these steps run in series, causing the build to take over 8 minutes. Is there any way to make them run in parallel?