https://github.com/xmidt-org/sonarcloud-installer-action
Installs the latest sonarcloud binaries for checking c/c++ code.
https://github.com/xmidt-org/sonarcloud-installer-action
Last synced: 12 days ago
JSON representation
Installs the latest sonarcloud binaries for checking c/c++ code.
- Host: GitHub
- URL: https://github.com/xmidt-org/sonarcloud-installer-action
- Owner: xmidt-org
- License: apache-2.0
- Created: 2021-12-19T19:35:09.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-25T17:44:31.000Z (about 3 years ago)
- Last Synced: 2025-05-13T00:52:23.215Z (12 days ago)
- Language: Shell
- Size: 17.6 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Sonarcloud Installer Action
This action installs the sonarcloud tools needed for C/C++ work using the latest
versions available.## Motivation
Sonarcloud doesn't provide a Github Action for installing the latest tooling if
you need the locally run CLI. This action fills this need and provides a mechanism
for validating the integrity of what was downloaded.## Action Inputs
- **working-directory**: (optional) The working directory used for building. Defaults to `.`.
- **version**: (optional) The specific version of the cli. Defaults to `*` (latest).## Examples
This example will install and use the latest version of the cli tool in a `build`
directory.```yml
- name: Get Sonarcloud Binaries
uses: xmidt-org/sonarcloud-installer-action@v1
with:
working-directory: build
``````yml
- name: Get Sonarcloud Binaries
uses: xmidt-org/sonarcloud-installer-action@v1
with:
working-directory: build
version: 4.6.2.2472
```