License approval policies
DETAILS: Tier: Ultimate Offering: GitLab.com, Self-managed, GitLab Dedicated
- Introduced in GitLab 15.9 with a flag named
license_scanning_policies
.- Generally available in GitLab 15.11. Feature flag
license_scanning_policies
removed.
Use license approval policies to specify criteria that determines when approval is required before a merge request can be merged.
NOTE: License approval policies are applicable to protected target branches only.
The following video provides an overview of these policies.
Prerequisites to creating a new license approval policy
License approval policies rely on the output of a dependency scanning job to verify that requirements have been met. If dependency scanning has not been properly configured, and therefore no dependency scanning jobs ran related to an open MR, the policy has no data with which to verify the requirements. When security policies are missing data for evaluation, by default they fail closed and assume the merge request could contain vulnerabilities. You can opt out of the default behavior with the fallback_behavior
property and set policies to fail open. A policy that fails open has all invalid and unenforceable rules unblocked.
To ensure enforcement of your policies, you should enable dependency scanning on your target development projects. You can achieve this a few different ways:
- Create a global scan execution policy that enforces Dependency Scanning to run in all target development projects.
- Use a Compliance Pipeline to define a Dependency Scanning job that is enforced on projects enforced by a given Compliance Framework.
- Work with development teams to configure Dependency Scanning in each of their project's
.gitlab-ci.yml
files or enable by using the Security Configuration panel.
License approval policies require license information from GitLab-supported packages.
Create a new license approval policy
Create a license approval policy to enforce license compliance.
To create a license approval policy:
- Link a security policy project to your development group, subgroup, or project (the Owner role is required).
- On the left sidebar, select Search or go to and find your project.
- Select Secure > Policies.
- Create a new Scan Result Policy.
- In your policy rule, select License scanning.
Criteria defining which licenses require approval
The following types of criteria can be used to determine which licenses are "approved" or "denied" and require approval.
- When any license in a list of explicitly prohibited licenses is detected.
- When any license is detected except for licenses that have been explicitly listed as acceptable.
Criteria to compare licenses detected in the merge request branch to licenses in the default branch
The following types of criteria can be used to determine whether or not approval is required based on the licenses that exist in the default branch:
- Denied licenses can be configured to only require approval if the denied license is part of a dependency that does not already exist in the default branch.
- Denied licenses can be configured to require approval if the denied license exists in any component that already exists in the default branch.
If a license is found that violates the license approval policy, it blocks the merge request and instructs the developer to remove it. Note, the merge request is not able to be merged until the denied
license is removed unless an eligible approver for the License Approval Policy approves the merge request.
Troubleshooting
The License Compliance widget is stuck in a loading state
A loading spinner is displayed in the following scenarios:
- While the pipeline is in progress.
- If the pipeline is complete, but still parsing the results in the background.
- If the license scanning job is complete, but the pipeline is still running.
The License Compliance widget polls every few seconds for updated results. When the pipeline is complete, the first poll after pipeline completion triggers the parsing of the results. This can take a few seconds depending on the size of the generated report.
The final state is when a successful pipeline run has been completed, parsed, and the licenses displayed in the widget.
unknown
licenses
License approval policies block merge requests due to License approval policies may block merge requests due to unknown
licenses in certain scenarios. This can happen in
any of the following situations:
- The dependency scanning job fails to identify a license for a particular component.
- A new or uncommon license is used that is not recognized by the scanning tool.
- The license information is missing or incomplete in the component's metadata.
To address this issue:
- Review the Licenses tab in the pipeline page to identify which components have
unknown
licenses or reviewout-of-policy
licenses generated by the GitLab Security Bot. - Manually investigate these components to determine their actual licenses.
- If the licenses cannot be determined or are not acceptable, consider removing or replacing the affected components.
If you need to temporarily allow merging with unknown
licenses:
- Edit your license approval policy.
- Add
unknown
to the list of allowed licenses. - After addressing the issue, remember to remove
unknown
from the allowed licenses list to maintain proper license compliance.
We are planning enhancements to allow for excluding licenses only for specific packages in epic 10203.
Always consult with your legal team when dealing with license compliance issues, especially when handling unknown
licenses.