https://github.com/psibi/setup-amber
https://github.com/psibi/setup-amber
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/psibi/setup-amber
- Owner: psibi
- License: mit
- Created: 2022-04-18T07:36:26.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2025-10-01T23:01:32.000Z (8 months ago)
- Last Synced: 2025-10-11T10:35:18.338Z (8 months ago)
- Language: TypeScript
- Size: 864 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# setup-amber
[](https://github.com/psibi/setup-amber/actions/workflows/test.yml)
GitHub action to install and cache the [amber](https://github.com/fpco/amber) tool.
# Usage
In most cases all you need is the following in your workflow:
``` yaml
- uses: psibi/setup-amber@v2.0.0
```
If you want a specific version of amber, you can specify this by
passing the amber-version input:
``` yaml
- uses: psibi/setup-amber@v2.0.0
with:
amber-version: 'v0.1.3'
```
In rare circumstances you might get rate limiting errors, this is
because this workflow has to make requests to GitHub API in order to
list available releases. If this happens you can set the
`GITHUB_TOKEN` environment variable.
``` yaml
- uses: psibi/setup-amber@v2.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```
### Inputs
| Name | Required | Description | Type | Default |
| -------------- | -------- | --------------------------------------- | ------ | ------- |
| `amber-version` | no | A valid NPM-style semver specification. | string | * |