From 43eec1e77975fb6717663d912e77e8c16be276a8 Mon Sep 17 00:00:00 2001 From: Stefan VanBuren Date: Fri, 28 Oct 2022 10:36:53 -0400 Subject: [PATCH] Update README to reference buf 1.9.0 (#71) --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 5cc7fac..51d51b6 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ steps: # Run `git checkout` - uses: actions/checkout@v2 # Install the `buf` CLI - - uses: bufbuild/buf-setup-action@v1.8.0 + - uses: bufbuild/buf-setup-action@v1.9.0 # Ensure that `buf` is installed - run: buf --version ``` @@ -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.8.0`][version] +`version` | The version of the [`buf` CLI][buf-cli] to install | [`1.9.0`][version] `github_token` | The GitHub token to use when making API requests | > These parameters are derived from [`action.yml`](./action.yml). @@ -43,7 +43,7 @@ If `version` is unspecified, the latest version of `buf` is installed: steps: - uses: actions/checkout@v2 # Installs latest - - uses: bufbuild/buf-setup-action@v1.8.0 + - uses: bufbuild/buf-setup-action@v1.9.0 - run: buf --version ``` @@ -52,11 +52,11 @@ Use the `version` parameter to pin to a specific version: ```yaml steps: - uses: actions/checkout@v2 - # Installs version 1.8.0 - - uses: bufbuild/buf-setup-action@v1.8.0 + # Installs version 1.9.0 + - uses: bufbuild/buf-setup-action@v1.9.0 with: - version: 1.8.0 - # Should output 1.8.0 + version: 1.9.0 + # Should output 1.9.0 - run: buf --version ``` @@ -66,7 +66,7 @@ recommended: ```yaml steps: - uses: actions/checkout@v2 - - uses: bufbuild/buf-setup-action@v1.8.0 + - uses: bufbuild/buf-setup-action@v1.9.0 with: version: latest - run: buf --version @@ -79,7 +79,7 @@ This may prevent rate limit issues when running on GitHub hosted runners: ```yaml steps: - - uses: bufbuild/buf-setup-action@v1.8.0 + - uses: bufbuild/buf-setup-action@v1.9.0 with: github_token: ${{ github.token }} ``` @@ -123,7 +123,7 @@ steps: # Run `git checkout` - uses: actions/checkout@v2 # Install the `buf` CLI - - uses: bufbuild/buf-setup-action@v1.8.0 + - uses: bufbuild/buf-setup-action@v1.9.0 # Install `protoc` - uses: arduino/setup-protoc@v1 ``` @@ -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.8.0 +[version]: https://github.com/bufbuild/buf/releases/tag/v1.9.0