Options for setting up escaneo de código
You decide how to generate escaneo de código alerts, and which tools to use, at a repository level. GitHub Enterprise Cloud provides fully integrated support for CodeQL analysis, and also supports analysis using third-party tools. For more information, see "About escaneo de código."
Options for generating alerts | |
---|---|
CodeQL | Using GitHub Actions (see "Setting up escaneo de código using actions") or running CodeQL analysis in a third-party continuous integration (CI) system (see "About CodeQL escaneo de código in your CI system"). |
Third‑party | Using GitHub Actions (see "Setting up escaneo de código using actions") or generated externally and uploaded to GitHub Enterprise Cloud (see "Uploading a SARIF file to GitHub"). |
If you run code scanning using multiple configurations, then sometimes an alert will have multiple analysis origins. If an alert has multiple analysis origins, you can view the status of the alert for each analysis origin on the alert page. Para obtener más información, consulta la sección "Acerca de los orígenes de análisis".
Setting up escaneo de código using starter workflows
Nota: Los flujos de trabajo inicial para la Advanced Security se han consolidado en una categoría de "Seguridad" en la pestaña de Acciones de un repositorio. Esta configuración nueva se encuentra actualmente en beta y está sujeta a cambios.
GitHub Enterprise Cloud proporciona flujos de trabajo iniciales para las características de seguridad tales como el escaneo de código. Puedes utilizar estos flujos de trabajo sugeridos para construir tus flujos de trabajo del escaneo de código en vez de comenzar desde cero. Escaneo de código starter workflows are only available for your repository if escaneo de código is enabled.
El utilizar acciones para ejecutar el escaneo de código utilizará minutos. Para obtener más información, consulta la sección "Acerca de la facturación para GitHub Actions".
- En GitHub.com, visita la página principal del repositorio.
- Debajo de tu nombre de repositorio, haz clic en Acciones.
- If the repository has already at least one workflow set up and running, click New workflow and go to step 5. If there are currently no workflows configured for the repository, go to the next step.
- Scroll down to the "Security" category and click Configure under the workflow you want to configure, or click View all to see all available security workflows.
- On the right pane of the workflow page, click Documentation and follow the on-screen instructions to tailor the workflow to your needs.
For more information, see "Using starter workflows" and "Configuring escaneo de código."
Setting up escaneo de código manually
El utilizar acciones para ejecutar el escaneo de código utilizará minutos. Para obtener más información, consulta la sección "Acerca de la facturación para GitHub Actions".
-
En GitHub.com, visita la página principal del repositorio.
-
Debajo de tu nombre de repositorio, da clic en Seguridad.
-
To the right of "Escaneo de código alerts", click Set up escaneo de código. If escaneo de código is missing, you need to ask an organization owner or repository administrator to enable GitHub Advanced Security. For more information, see "Managing security and analysis settings for your organization" or "Managing security and analysis settings for your repository."
-
Under "Get started with escaneo de código", click Set up this workflow on the Flujo de trabajo de análisis de CodeQL or on a third-party workflow.
Workflows are only displayed if they are relevant for the programming languages detected in the repository. The Flujo de trabajo de análisis de CodeQL is always displayed, but the "Set up this workflow" button is only enabled if CodeQL analysis supports the languages present in the repository.
-
To customize how escaneo de código scans your code, edit the workflow.
Generally you can commit the Flujo de trabajo de análisis de CodeQL without making any changes to it. However, many of the third-party workflows require additional configuration, so read the comments in the workflow before committing.
For more information, see "Configuring escaneo de código."
-
Use the Start commit drop-down, and type a commit message.
-
Choose whether you'd like to commit directly to the default branch, or create a new branch and start a pull request.
-
Click Commit new file or Propose new file.
In the default Flujo de trabajo de análisis de CodeQL, escaneo de código is configured to analyze your code each time you either push a change to the default branch or any protected branches, or raise a pull request against the default branch. As a result, escaneo de código will now commence.
The on:pull_request
and on:push
triggers for code scanning are each useful for different purposes. For more information, see "Scanning pull requests" and "Scanning on push."
Bulk set up of escaneo de código
You can set up escaneo de código in many repositories at once using a script. If you'd like to use a script to raise pull requests that add a GitHub Actions workflow to multiple repositories, see the jhutchings1/Create-ActionsPRs
repository for an example using PowerShell, or nickliffen/ghas-enablement
for teams who do not have PowerShell and instead would like to use NodeJS.
Viewing the logging output from escaneo de código
After setting up escaneo de código for your repository, you can watch the output of the actions as they run.
-
Debajo de tu nombre de repositorio, haz clic en Acciones.
You'll see a list that includes an entry for running the escaneo de código workflow. The text of the entry is the title you gave your commit message.
-
Click the entry for the escaneo de código workflow.
-
Click the job name on the left. For example, Analyze (LANGUAGE).
-
Review the logging output from the actions in this workflow as they run.
-
Once all jobs are complete, you can view the details of any escaneo de código alerts that were identified. For more information, see "Managing escaneo de código alerts for your repository."
Note: If you raised a pull request to add the escaneo de código workflow to the repository, alerts from that pull request aren't displayed directly on the Escaneo de código page until the pull request is merged. If any alerts were found you can view these, before the pull request is merged, by clicking the n alerts found link in the banner on the Escaneo de código page.
Understanding the pull request checks
Each escaneo de código workflow you set to run on pull requests always has at least two entries listed in the checks section of a pull request. There is one entry for each of the analysis jobs in the workflow, and a final one for the results of the analysis.
The names of the escaneo de código analysis checks take the form: "TOOL NAME / JOB NAME (TRIGGER)." For example, for CodeQL, analysis of C++ code has the entry "CodeQL / Analyze (cpp) (pull_request)." You can click Details on a escaneo de código analysis entry to see logging data. This allows you to debug a problem if the analysis job failed. For example, for escaneo de código analysis of compiled languages, this can happen if the action can't build the code.
When the escaneo de código jobs complete, GitHub works out whether any alerts were added by the pull request and adds the "Escaneo de código results / TOOL NAME" entry to the list of checks. After escaneo de código has been performed at least once, you can click Details to view the results of the analysis. If you used a pull request to add escaneo de código to the repository, you will initially see an "Analysis not found" message when you click Details on the "Escaneo de código results / TOOL NAME" check.
The table lists one or more categories. Each category relates to specific analyses, for the same tool and commit, performed on a different language or a different part of the code. For each category, the table shows the two analyses that escaneo de código attempted to compare to determine which alerts were introduced or fixed in the pull request.
For example, in the screenshot above, escaneo de código found an analysis for the merge commit of the pull request, but no analysis for the head of the main branch.
Reasons for the "Analysis not found" message
After escaneo de código has analyzed the code in a pull request, it needs to compare the analysis of the topic branch (the branch you used to create the pull request) with the analysis of the base branch (the branch into which you want to merge the pull request). This allows escaneo de código to compute which alerts are newly introduced by the pull request, which alerts were already present in the base branch, and whether any existing alerts are fixed by the changes in the pull request. Initially, if you use a pull request to add escaneo de código to a repository, the base branch has not yet been analyzed, so it's not possible to compute these details. In this case, when you click through from the results check on the pull request you will see the "Analysis not found" message.
There are other situations where there may be no analysis for the latest commit to the base branch for a pull request. These include:
-
The pull request has been raised against a branch other than the default branch, and this branch hasn't been analyzed.
To check whether a branch has been scanned, go to the Escaneo de código page, click the Branch drop-down and select the relevant branch.
The solution in this situation is to add the name of the base branch to the
on:push
andon:pull_request
specification in the escaneo de código workflow on that branch and then make a change that updates the open pull request that you want to scan. -
The latest commit on the base branch for the pull request is currently being analyzed and analysis is not yet available.
Wait a few minutes and then push a change to the pull request to retrigger escaneo de código.
-
An error occurred while analyzing the latest commit on the base branch and analysis for that commit isn't available.
Merge a trivial change into the base branch to trigger escaneo de código on this latest commit, then push a change to the pull request to retrigger escaneo de código.
Next steps
After setting up escaneo de código, and allowing its actions to complete, you can:
- View all of the escaneo de código alerts generated for this repository. For more information, see "Managing escaneo de código alerts for your repository."
- View any alerts generated for a pull request submitted after you set up escaneo de código. For more information, see "Triaging escaneo de código alerts in pull requests."
- Set up notifications for completed runs. For more information, see "Configuring notifications."
- View the logs generated by the escaneo de código analysis. For more information, see "Viewing escaneo de código logs."
- Investigate any problems that occur with the initial setup of CodeQL escaneo de código. For more information, see "Troubleshooting the CodeQL workflow."
- Customize how escaneo de código scans the code in your repository. For more information, see "Configuring escaneo de código."