From f40d832ccac2d86740a43d54758fb74daa80024e Mon Sep 17 00:00:00 2001 From: Doria Keung Date: Tue, 1 Mar 2022 12:04:56 -0500 Subject: [PATCH] Update to v1.1.0 --- README.md | 12 ++++++------ action.yml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index b55ed93..730292a 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ You can configure `buf-setup-action` with these parameters: Parameter | Description | Default :---------|:------------|:------- -`version` | The version of the [`buf` CLI][buf-cli] to install | [`1.0.0`][version] +`version` | The version of the [`buf` CLI][buf-cli] to install | [`1.1.0`][version] `github_token` | The GitHub token to use when making API requests | > These parameters are derived from [`action.yml`](./action.yml). @@ -52,11 +52,11 @@ Use the `version` parameter to pin to a specific version: ```yaml steps: - uses: actions/checkout@v2 - # Installs version 1.0.0 - - uses: bufbuild/buf-setup-action@v0.6.0 + # Installs version 1.1.0 + - uses: bufbuild/buf-setup-action@v1.1.0 with: - version: 1.0.0 - # Should output 1.0.0 + version: 1.1.0 + # Should output 1.1.0 - run: buf --version ``` @@ -139,4 +139,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.0.0 +[version]: https://github.com/bufbuild/buf/releases/tag/v1.1.0 diff --git a/action.yml b/action.yml index 71f1da2..3a25107 100644 --- a/action.yml +++ b/action.yml @@ -7,7 +7,7 @@ branding: inputs: version: description: The version of buf to set up. - default: '1.0.0' + default: '1.1.0' github_token: description: The GitHub token to use when making API requests. runs: