From 0050ab7a0b8d775e6ef6b0158444dd01de14e5c2 Mon Sep 17 00:00:00 2001 From: Samantha Small Date: Fri, 27 Oct 2023 09:56:42 -0400 Subject: [PATCH] pin to buf 1.27.1 --- README.md | 8 ++++---- action.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2254fec..fc20f44 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ You can configure `buf-setup-action` with these parameters: | Parameter | Description | Default | |:---------------|:---------------------------------------------------|:-------------------| -| `version` | The version of the [`buf` CLI][buf-cli] to install | [`v1.27.1-1`][version] | +| `version` | The version of the [`buf` CLI][buf-cli] to install | [`v1.27.1`][version] | | `github_token` | The GitHub token to use when making API requests | | | `buf_user` | The username to use for logging into Buf Schema registry. | | | `buf_api_token` | The API token to use for logging into Buf Schema registry. | | @@ -59,8 +59,8 @@ steps: # Installs version 1.27.1-1 - uses: bufbuild/buf-setup-action@v1.27.1-1 with: - version: 1.27.1-1 - # Should output 1.27.1-1 + version: 1.27.1 + # Should output 1.27.1 - run: buf --version ``` @@ -179,4 +179,4 @@ steps: [compiler]: https://docs.buf.build/build/internal-compiler [protoc]: https://github.com/protocolbuffers/protobuf#protocol-compiler-installation [setup-protoc]: https://github.com/marketplace/actions/setup-protoc -[version]: https://github.com/bufbuild/buf/releases/tag/v1.27.1-1 +[version]: https://github.com/bufbuild/buf/releases/tag/v1.27.1 diff --git a/action.yml b/action.yml index 706ef40..b2c355d 100644 --- a/action.yml +++ b/action.yml @@ -8,7 +8,7 @@ inputs: version: description: The version of buf to set up. required: false - default: '1.27.1-1' + default: '1.27.1' github_token: description: The GitHub token to use when making API requests. required: false