Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/romeovs/asdf-update-action
Update the versions in .tool-versions
https://github.com/romeovs/asdf-update-action
Last synced: 24 days ago
JSON representation
Update the versions in .tool-versions
- Host: GitHub
- URL: https://github.com/romeovs/asdf-update-action
- Owner: romeovs
- Created: 2024-02-06T14:34:14.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-02-06T15:55:15.000Z (10 months ago)
- Last Synced: 2024-04-17T01:45:38.636Z (7 months ago)
- Language: TypeScript
- Homepage:
- Size: 259 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# @romeovs/asdf-update-action
## Usage
Add a step to you workflow to update you `.tool-versions` depencies:
```yaml
- name: Update .tool-versions
uses: romeovs/asdf-update-action@v1
with:
strategy: minor
```### Inputs
- `path`: path of the `.tool-versions` file, defaults to `.tool-versions`
- `stragegy`: the semver specificity at which to match new versions## Example workflow
```yaml
name: Get version info
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: asdf-vm/actions/plugins-add@v3
- name: Update .tool-versions
uses: romeovs/asdf-update-action@v1
with:
strategy: minor
```## License
The scripts and documentation in this project are released under the MIT License.