Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fabasoad/ghacu

GitHub Actions Check Updates - CLI tool to check whether all your actions are up-to-date or not.
https://github.com/fabasoad/ghacu

cli github-actions version-manager

Last synced: 2 months ago
JSON representation

GitHub Actions Check Updates - CLI tool to check whether all your actions are up-to-date or not.

Awesome Lists containing this project

README

        

> :warning: This project is deprecated and no longer maintained starting from
> `2022/11/18`. Please use [dependabot CLI](https://github.com/dependabot/cli)
> instead, an official tool made by GitHub.

ghacu logo


ghacu


Keep your GitHub Actions up-to-date.











## :page_with_curl: Description
CLI tool that checks versions of GitHub Actions that used in a repository. Please read [documentation](https://github.com/fabasoad/ghacu/wiki) for more details.

## :shipit: Commands
```pycon
--no-cache Disable cache.
--no-colors Disable colors.
--log-level (Default: Information) Set log level. Possible values: Trace, Debug, Information, Warning, Error, Critical, None.
--output-type (Default: Console) Information output type. Possible values: Console, Logger, Silent.
--repository Path to the root of a project.
--token GitHub token to work with actions repositories.
--upgrade Upgrade versions to the latest one.
--help Display this help screen.
--version Display version information.
```
All commands are optional and can be run by purpose.

### :key: GitHub Token
There are 2 ways to pass GitHub token to _ghacu_:
1. Using `--token` parameter:
```bash
ghacu --token abc123 --repository "C:\Projects\business-card"
```
2. Defining `GHACU_GITHUB_TOKEN` environment variable:
```bash
export GHACU_GITHUB_TOKEN=abc123
ghacu --repository "C:\Projects\business-card"
```
> Program argument way takes precedence over the environment variable way. So the program looks at program argument first, if it's not present it looks at GHACU_GITHUB_TOKEN environment variable and if it's not present as well then ghacu will work as unauthenticated user.

## :crystal_ball: Examples
```bash
PS C:\Projects\business-card> ghacu
> CI (.github\workflows\ci.yml)
actions/checkout v1 » v2.1.0
bahmutov/npm-install v1 » v1.4.0
crazy-max/ghaction-github-pages v1 » v1.3.0

> Milestone Closure (.github\workflows\release-notes.yml)
actions/checkout master » v2.1.0
decathlon/release-notes-generator-action 2.0.0 » v2.0.1

Run ghacu --upgrade to upgrade the actions.
```

:top: