Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fabasoad/setup-graudit-action
This GitHub action installs graudit CLI tool
https://github.com/fabasoad/setup-graudit-action
actions github-actions security security-audit security-tools vulnerability-detection
Last synced: 18 days ago
JSON representation
This GitHub action installs graudit CLI tool
- Host: GitHub
- URL: https://github.com/fabasoad/setup-graudit-action
- Owner: fabasoad
- License: mit
- Created: 2022-10-22T14:23:43.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-13T16:50:47.000Z (7 months ago)
- Last Synced: 2024-05-02T05:07:19.846Z (7 months ago)
- Topics: actions, github-actions, security, security-audit, security-tools, vulnerability-detection
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Setup graudit action
[![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/badges/StandWithUkraine.svg)](https://stand-with-ukraine.pp.ua)
![Release](https://img.shields.io/github/v/release/fabasoad/setup-graudit-action?include_prereleases)
![functional-tests](https://github.com/fabasoad/setup-graudit-action/actions/workflows/functional-tests.yml/badge.svg)
![security](https://github.com/fabasoad/setup-graudit-action/actions/workflows/security.yml/badge.svg)
![linting](https://github.com/fabasoad/setup-graudit-action/actions/workflows/linting.yml/badge.svg)This action installs [graudit](https://github.com/wireghoul/graudit) CLI tool.
## Prerequisites
The following tools have to be installed for successful work of this GitHub action:
[git](https://git-scm.com).## Inputs
| Name | Required | Description | Default | Possible values |
|---------|----------|---------------------------------------------------------------------------------------------------|---------|-----------------|
| version | No | Version of `graudit` tool that can be found [here](https://github.com/wireghoul/graudit/releases) | `3.6` | <String> |## Example usage
### Workflow configuration
```yaml
name: Teston: push
jobs:
setup:
name: graudit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: fabasoad/setup-graudit-action@v0
with:
version: 3.6
- name: Print version
run: graudit -v
```### Result
```shell
Run graudit -v
graudit version: 3.6
```