| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Warning
This action is deprecated and will be removed in a future release. Please use the sonarqube-scan-action action instead. The sonarqube-scan-action is a drop-in replacement for this action, you can find it here.
This SonarSource project, available as a GitHub Action, scans your projects with SonarQube Cloud.
SonarQube Cloud (formerly SonarCloud) is a widely used static analysis solution for continuous code quality and security inspection.
It helps developers detect coding issues in 30+ languages, frameworks, and IaC platforms, including Java, JavaScript, TypeScript, C#, Python, C, C++, and many more.
The solution also provides fix recommendations leveraging AI with Sonar's AI CodeFix capability.
Project metadata, including the location of the sources to be analyzed, must be declared in the file sonar-project.properties in the base directory:
sonar.organization=<replace with your SonarQube Cloud organization key>
sonar.projectKey=<replace with the key generated when setting up the project on SonarQube Cloud>
# relative paths to source directories. More details and properties are described
# at https://docs.sonarsource.com/sonarqube-cloud/advanced-setup/analysis-scope/
sonar.sources=.The workflow, usually declared under .github/workflows, looks like:
on:
# Trigger analysis when pushing to your main branches, and when creating a pull request.
push:
branches:
- main
- master
- develop
- 'releases/**'
pull_request:
types: [opened, synchronize, reopened]
name: Main Workflow
jobs:
sonarqube:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
# Disabling shallow clones is recommended for improving the relevancy of reporting
fetch-depth: 0
- name: SonarQube Scan
uses: sonarsource/sonarcloud-github-action@<action version> # Ex: v4.0.0, See the latest version at https://github.com/marketplace/actions/sonarcloud-scan
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}You can change the analysis base directory by using the optional input projectBaseDir like this:
- uses: sonarsource/sonarcloud-github-action@<action version>
with:
projectBaseDir: app/srcIn case you need to specify the version of the Sonar Scanner, you can use the scannerVersion option:
- uses: sonarsource/sonarcloud-github-action@<action version>
with:
scannerVersion: 6.2.0.4584In case you need to add additional analysis parameters, and you do not wish to set them in the sonar-project.properties file, you can use the args option:
- uses: sonarsource/sonarcloud-github-action@<action version>
with:
projectBaseDir: app/src
args: >
-Dsonar.organization=my-organization
-Dsonar.projectKey=my-projectkey
-Dsonar.python.coverage.reportPaths=coverage.xml
-Dsonar.sources=lib/
-Dsonar.tests=tests/
-Dsonar.test.exclusions=tests/**
-Dsonar.verbose=trueYou can also specify the URL where to retrieve the SonarScanner CLI from. The specified URL overrides the default address: https://binaries.sonarsource.com/Distribution/sonar-scanner-cli. This can be useful when the runner executing the action is self-hosted and has regulated or no access to the Internet:
- uses: sonarsource/sonarcloud-github-action@<action version>
with:
scannerBinariesUrl: https://my.custom.binaries.url.com/Distribution/sonar-scanner-cli/More information about possible analysis parameters can be found in the Analysis parameters page of the SonarQube Cloud documentation.
Here is an example of how you can pass a certificate (in PEM format) to the Scanner truststore:
- uses: sonarsource/sonarcloud-github-action@<action version>
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_ROOT_CERT: ${{ secrets.SONAR_ROOT_CERT }}If your source code file names contain special characters that are not covered by the locale range of en_US.UTF-8, you can configure your desired locale like this:
- uses: sonarsource/sonarcloud-github-action@<action version>
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
LC_ALL: "ru_RU.UTF-8"This GitHub Action will not work for all technologies. If you are in one of the following situations, you should use the following alternatives:
To provide feedback (requesting a feature or reporting a bug) please post on the SonarSource Community Forum.
Container images built with this project include third-party materials.
| Back | FazBrowse Home | New Git URL |