From 1158f4fa81bc02e1ff62abcca6d516c9e24c77da Mon Sep 17 00:00:00 2001
From: "app-token-buf-setup-action[bot]"
 <117299734+app-token-buf-setup-action[bot]@users.noreply.github.com>
Date: Fri, 27 Oct 2023 16:45:27 -0400
Subject: [PATCH] Release v1.27.2 (#171)

Release prepared for 1.27.2

Co-authored-by: doriable <doriable@users.noreply.github.com>
---
 README.md  | 26 +++++++++++++-------------
 action.yml |  2 +-
 2 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/README.md b/README.md
index fc20f44..8194bd1 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.27.1-1
+  - uses: bufbuild/buf-setup-action@v1.27.2
   # Ensure that `buf` is installed
   - run: buf --version
 ```
@@ -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`][version] |
+| `version`      | The version of the [`buf` CLI][buf-cli] to install | [`v1.27.2`][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.                                                                                                            |                    |
@@ -47,7 +47,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.27.1-1
+  - uses: bufbuild/buf-setup-action@v1.27.2
   - run: buf --version
 ```
 
@@ -56,11 +56,11 @@ Use the `version` parameter to pin to a specific version:
 ```yaml
 steps:
   - uses: actions/checkout@v2
-  # Installs version 1.27.1-1
-  - uses: bufbuild/buf-setup-action@v1.27.1-1
+  # Installs version 1.27.2
+  - uses: bufbuild/buf-setup-action@v1.27.2
     with:
-      version: 1.27.1
-  # Should output 1.27.1
+      version: 1.27.2
+  # Should output 1.27.2
   - run: buf --version
 ```
 
@@ -70,7 +70,7 @@ recommended:
 ```yaml
 steps:
   - uses: actions/checkout@v2
-  - uses: bufbuild/buf-setup-action@v1.27.1-1
+  - uses: bufbuild/buf-setup-action@v1.27.2
     with:
       version: latest
   - run: buf --version
@@ -83,7 +83,7 @@ This may prevent rate limit issues when running on GitHub hosted runners:
 
 ```yaml
 steps:
-  - uses: bufbuild/buf-setup-action@v1.27.1-1
+  - uses: bufbuild/buf-setup-action@v1.27.2
     with:
       github_token: ${{ github.token }}
 ```
@@ -95,7 +95,7 @@ you must still pass the token to the action:
 
 ```yaml
 steps:
-  - uses: bufbuild/buf-setup-action@v1.27.1-1
+  - uses: bufbuild/buf-setup-action@v1.27.2
     with:
       github_token: ${{ secrets.GITHUB_TOKEN }}
 ```
@@ -106,7 +106,7 @@ If you are using Private [Remote Packages](https://docs.buf.build/bsr/remote-pac
 
 ```yaml
 steps:
-  - uses: bufbuild/buf-setup-action@v1.27.1-1
+  - uses: bufbuild/buf-setup-action@v1.27.2
     with:
       buf_user: ${{ secrets.buf_user }}
       buf_api_token: ${{ secrets.buf_api_token }}
@@ -163,7 +163,7 @@ steps:
   # Run `git checkout`
   - uses: actions/checkout@v2
   # Install the `buf` CLI
-  - uses: bufbuild/buf-setup-action@v1.27.1-1
+  - uses: bufbuild/buf-setup-action@v1.27.2
   # Install `protoc`
   - uses: arduino/setup-protoc@v1
 ```
@@ -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
+[version]: https://github.com/bufbuild/buf/releases/tag/v1.27.2
diff --git a/action.yml b/action.yml
index b2c355d..91d7d25 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'
+    default: '1.27.2'
   github_token:
     description: The GitHub token to use when making API requests.
     required: false