Skip to content

Commit 46a2967

Browse files
authored
Correct buf CLI version (#189)
Release 1.29.0-1 used the wrong version for the CLI. Fixes the action. Fixes #188
1 parent ba063e7 commit 46a2967

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ You can configure `buf-setup-action` with these parameters:
3232

3333
| Parameter | Description | Default |
3434
|:---------------|:---------------------------------------------------|:-------------------|
35-
| `version` | The version of the [`buf` CLI][buf-cli] to install | [`v1.29.0-1`][version] |
35+
| `version` | The version of the [`buf` CLI][buf-cli] to install | [`v1.29.0`][version] |
3636
| `github_token` | The GitHub token to use when making API requests | |
3737
| `buf_user` | The username to use for logging into Buf Schema registry. | |
3838
| `buf_api_token` | The API token to use for logging into Buf Schema registry. | |
@@ -59,8 +59,8 @@ steps:
5959
# Installs version 1.29.0-1
6060
- uses: bufbuild/[email protected]
6161
with:
62-
version: 1.29.0-1
63-
# Should output 1.29.0-1
62+
version: 1.29.0
63+
# Should output 1.29.0
6464
- run: buf --version
6565
```
6666

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ inputs:
88
version:
99
description: The version of buf to set up.
1010
required: false
11-
default: '1.29.0-1'
11+
default: '1.29.0'
1212
github_token:
1313
description: The GitHub token to use when making API requests.
1414
required: false

0 commit comments

Comments
 (0)