From 058316dbc9b9f2adb1bcfc8b2fce48d74e7292d9 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: Thu, 22 Aug 2024 11:09:12 -0400 Subject: [PATCH] Release v1.38.0 (#220) Release prepared for 1.38.0 Co-authored-by: oliversun9 --- README.md | 26 +++++++++++++------------- action.yml | 2 +- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 70e0a16..acdd91f 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ steps: # Run `git checkout` - uses: actions/checkout@v2 # Install the `buf` CLI - - uses: bufbuild/buf-setup-action@v1.37.0 + - uses: bufbuild/buf-setup-action@v1.38.0 # Ensure that `buf` is installed - run: buf --version ``` @@ -37,7 +37,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.37.0`][version] | +| `version` | The version of the [`buf` CLI][buf-cli] to install | [`v1.38.0`][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. | | @@ -52,7 +52,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.37.0 + - uses: bufbuild/buf-setup-action@v1.38.0 - run: buf --version ``` @@ -61,11 +61,11 @@ Use the `version` parameter to pin to a specific version: ```yaml steps: - uses: actions/checkout@v2 - # Installs version 1.37.0 - - uses: bufbuild/buf-setup-action@v1.37.0 + # Installs version 1.38.0 + - uses: bufbuild/buf-setup-action@v1.38.0 with: - version: 1.37.0 - # Should output 1.37.0 + version: 1.38.0 + # Should output 1.38.0 - run: buf --version ``` @@ -75,7 +75,7 @@ recommended: ```yaml steps: - uses: actions/checkout@v2 - - uses: bufbuild/buf-setup-action@v1.37.0 + - uses: bufbuild/buf-setup-action@v1.38.0 with: version: latest - run: buf --version @@ -88,7 +88,7 @@ This may prevent rate limit issues when running on GitHub hosted runners: ```yaml steps: - - uses: bufbuild/buf-setup-action@v1.37.0 + - uses: bufbuild/buf-setup-action@v1.38.0 with: github_token: ${{ github.token }} ``` @@ -100,7 +100,7 @@ you must still pass the token to the action: ```yaml steps: - - uses: bufbuild/buf-setup-action@v1.37.0 + - uses: bufbuild/buf-setup-action@v1.38.0 with: github_token: ${{ secrets.GITHUB_TOKEN }} ``` @@ -111,7 +111,7 @@ If you are using Private [Remote Packages](https://docs.buf.build/bsr/remote-pac ```yaml steps: - - uses: bufbuild/buf-setup-action@v1.37.0 + - uses: bufbuild/buf-setup-action@v1.38.0 with: buf_user: ${{ secrets.buf_user }} buf_api_token: ${{ secrets.buf_api_token }} @@ -168,7 +168,7 @@ steps: # Run `git checkout` - uses: actions/checkout@v2 # Install the `buf` CLI - - uses: bufbuild/buf-setup-action@v1.37.0 + - uses: bufbuild/buf-setup-action@v1.38.0 # Install `protoc` - uses: arduino/setup-protoc@v1 ``` @@ -185,4 +185,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.37.0 +[version]: https://github.com/bufbuild/buf/releases/tag/v1.38.0 diff --git a/action.yml b/action.yml index 070972f..9809578 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.37.0' + default: '1.38.0' github_token: description: The GitHub token to use when making API requests. required: false