https://github.com/ryohidaka/action-bump-uses
GitHub Actions to update the version of the "uses" documented in the README.
https://github.com/ryohidaka/action-bump-uses
bump-version bumpversion github-actions readme version
Last synced: 16 days ago
JSON representation
GitHub Actions to update the version of the "uses" documented in the README.
- Host: GitHub
- URL: https://github.com/ryohidaka/action-bump-uses
- Owner: ryohidaka
- Created: 2024-10-03T04:15:50.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2026-03-25T14:44:37.000Z (3 months ago)
- Last Synced: 2026-03-26T17:21:44.168Z (3 months ago)
- Topics: bump-version, bumpversion, github-actions, readme, version
- Language: Shell
- Homepage: https://github.com/marketplace/actions/bump-uses
- Size: 54.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Bump Uses
[](https://github.com/ryohidaka/action-bump-uses/releases/)
[](https://github.com/ryohidaka/action-bump-uses/actions/workflows/test.yml)
GitHub Actions to update the version of the `uses` documented in the README.
## Usage
```yml
on: [push]
permissions:
contents: write
jobs:
bump-uses:
runs-on: ubuntu-latest
steps:
- uses: ryohidaka/action-bump-uses@v0.4.0
with:
commit-user-name: "github-actions[bot]"
commit-user-email: "41898282+github-actions[bot]@users.noreply.github.com"
commit-message: "chore: Bump uses"
dry-run: false
```
## Inputs
| Input | Description | Default |
| ------------------- | --------------------------------------------------- | ------------------------------------------------------- |
| `commit-user-name` | Commit username. | `github-actions[bot]` |
| `commit-user-email` | Commit email. | `41898282+github-actions[bot]@users.noreply.github.com` |
| `commit-message` | Commit message. | `chore: Bump uses` |
| `dry-run` | If true, the commit and push steps will be skipped. | `false` |