Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The following inputs can be used to configure the action:
| Input | Description | Default | Required |
| ------------------- | ------------------------------------------------------------------------------------ | ------------------------ | -------- |
| `args` | Arguments to pass to the ubc command. If provided, ubc will be invoked immediately. | `''` | No |
| `version` | The version of the `ubc` CLI to install. Use `latest` for the latest version. | `0.19.0` | No |
| `version` | The version of the `ubc` CLI to install. Use `latest` for the latest version. | `0.19.1` | No |
| `license-key` | The ubCode license key. Recommended to be passed via secrets. | `''` | No |
| `license-user` | The ubCode license user. Recommended to be passed via secrets. | `''` | No |
| `working-directory` | The working directory to run the `ubc` command in. Defaults to the repository root. | `${{ github.workspace }}`| No |
Expand Down Expand Up @@ -60,4 +60,4 @@ Windows and macOS runners are not supported at the moment. This action only supp

## License

The scripts and documentation in this project are released under the [MIT License](LICENSE).
The scripts and documentation in this project are released under the [MIT License](LICENSE).
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ author: 'useblocks'
# This allows for flexible and configurable behavior.
inputs:
version:
description: 'The version of the ubc CLI to install (e.g., 0.19.0). Use "latest" for the latest version.'
description: 'The version of the ubc CLI to install (e.g., 0.19.1). Use "latest" for the latest version.'
required: false
default: '0.19.0' # Pinning to a known stable version by default is a best practice.
default: '0.19.1' # Pinning to a known stable version by default is a best practice.
license-key:
description: 'The ubCode license key. Recommended to be passed via secrets.'
required: false
Expand Down