https://github.com/dawidd6/actions-updater
:hammer_and_wrench: Updater of used GitHub Actions in workflow files
https://github.com/dawidd6/actions-updater
gem git github-actions ruby ruby-gem update-checker updater
Last synced: 5 months ago
JSON representation
:hammer_and_wrench: Updater of used GitHub Actions in workflow files
- Host: GitHub
- URL: https://github.com/dawidd6/actions-updater
- Owner: dawidd6
- License: mit
- Archived: true
- Created: 2019-12-03T13:56:05.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-21T04:38:17.000Z (over 4 years ago)
- Last Synced: 2024-05-01T14:19:17.904Z (about 1 year ago)
- Topics: gem, git, github-actions, ruby, ruby-gem, update-checker, updater
- Language: Ruby
- Homepage:
- Size: 90.8 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# actions-updater
[](https://rubygems.org/gems/actions-updater)
A rather simple utility that checks if there are any updates for used Github Actions in specified workflow files (and optionally writes them back to files).
[](https://asciinema.org/a/NaWymA8kq3C5UDkoIbpBOrRSh)
## Installation
### Homebrew
```sh
brew install dawidd6/tap/actions-updater
```### RubyGems
```sh
gem install actions-updater
```### Source
```sh
rake install
```## Usage
Check for available updates:
```sh
# print every used action:
actions-updater .github/workflows/*.yml
# print only if there are any updates:
actions-updater --newer .github/workflows/*.yml
```Check for available updates and write to files:
```sh
actions-updater --write .github/workflows/*.yml
```