https://github.com/koki-develop/setup-ghasec
🛡️ A GitHub Action to install ghasec, a security linter for GitHub Actions workflows.
https://github.com/koki-develop/setup-ghasec
github-actions security
Last synced: 24 days ago
JSON representation
🛡️ A GitHub Action to install ghasec, a security linter for GitHub Actions workflows.
- Host: GitHub
- URL: https://github.com/koki-develop/setup-ghasec
- Owner: koki-develop
- License: mit
- Created: 2026-03-24T23:50:13.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2026-03-25T00:22:29.000Z (about 1 month ago)
- Last Synced: 2026-03-26T05:26:53.585Z (about 1 month ago)
- Topics: github-actions, security
- Language: Shell
- Homepage: https://github.com/marketplace/actions/setup-ghasec
- Size: 13.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# setup-ghasec
A GitHub Action to install [ghasec](https://github.com/koki-develop/ghasec), a security linter for GitHub Actions workflows.
## Usage
```yaml
- uses: koki-develop/setup-ghasec@v1.0.0
```
### Inputs
| Name | Description | Default |
| --- | --- | --- |
| `version` | Version to install (e.g. `X.Y.Z`, `vX.Y.Z`, or `latest`) | `latest` |
| `token` | GitHub token for API requests (to avoid rate limiting) | `${{ github.token }}` |
### Example
```yaml
name: ghasec
on:
pull_request:
push:
branches: [main]
jobs:
ghasec:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: koki-develop/setup-ghasec@v1.0.0
- run: ghasec --format=github-actions
```
## License
[MIT](./LICENSE)