Skip to content

Commit c9fa470

Browse files
Release v1.25.0 (#143)
Release prepared for 1.25.0 Co-authored-by: app-token-buf-buf-setup-action[bot] <app-token-buf-buf-setup-action[bot]@users.noreply.github.com>
1 parent d5f79ca commit c9fa470

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed
 

‎README.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ steps:
1919
# Run `git checkout`
2020
- uses: actions/checkout@v2
2121
# Install the `buf` CLI
22-
- uses: bufbuild/buf-setup-action@v1.24.0
22+
- uses: bufbuild/buf-setup-action@v1.25.0
2323
# Ensure that `buf` is installed
2424
- run: buf --version
2525
```
@@ -32,7 +32,7 @@ You can configure `buf-setup-action` with these parameters:
3232

3333
| Parameter | Description | Default |
3434
|:---------------|:---------------------------------------------------|:-------------------|
35-
| `version` | The version of the [`buf` CLI][buf-cli] to install | [`v1.24.0`][version] |
35+
| `version` | The version of the [`buf` CLI][buf-cli] to install | [`v1.25.0`][version] |
3636
| `github_token` | The GitHub token to use when making API requests | |
3737
| `buf_user` | The username to use for logging into Buf Schema registry. | |
3838
| `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:
4747
steps:
4848
- uses: actions/checkout@v2
4949
# Installs latest
50-
- uses: bufbuild/buf-setup-action@v1.24.0
50+
- uses: bufbuild/buf-setup-action@v1.25.0
5151
- run: buf --version
5252
```
5353

@@ -56,11 +56,11 @@ Use the `version` parameter to pin to a specific version:
5656
```yaml
5757
steps:
5858
- uses: actions/checkout@v2
59-
# Installs version 1.24.0
60-
- uses: bufbuild/buf-setup-action@v1.24.0
59+
# Installs version 1.25.0
60+
- uses: bufbuild/buf-setup-action@v1.25.0
6161
with:
62-
version: 1.24.0
63-
# Should output 1.24.0
62+
version: 1.25.0
63+
# Should output 1.25.0
6464
- run: buf --version
6565
```
6666

@@ -70,7 +70,7 @@ recommended:
7070
```yaml
7171
steps:
7272
- uses: actions/checkout@v2
73-
- uses: bufbuild/buf-setup-action@v1.24.0
73+
- uses: bufbuild/buf-setup-action@v1.25.0
7474
with:
7575
version: latest
7676
- run: buf --version
@@ -83,7 +83,7 @@ This may prevent rate limit issues when running on GitHub hosted runners:
8383

8484
```yaml
8585
steps:
86-
- uses: bufbuild/buf-setup-action@v1.24.0
86+
- uses: bufbuild/buf-setup-action@v1.25.0
8787
with:
8888
github_token: ${{ github.token }}
8989
```
@@ -95,7 +95,7 @@ you must still pass the token to the action:
9595

9696
```yaml
9797
steps:
98-
- uses: bufbuild/buf-setup-action@v1.24.0
98+
- uses: bufbuild/buf-setup-action@v1.25.0
9999
with:
100100
github_token: ${{ secrets.GITHUB_TOKEN }}
101101
```
@@ -106,7 +106,7 @@ If you are using Private [Remote Packages](https://docs.buf.build/bsr/remote-pac
106106

107107
```yaml
108108
steps:
109-
- uses: bufbuild/buf-setup-action@v1.24.0
109+
- uses: bufbuild/buf-setup-action@v1.25.0
110110
with:
111111
buf_user: ${{ secrets.buf_user }}
112112
buf_api_token: ${{ secrets.buf_api_token }}
@@ -163,7 +163,7 @@ steps:
163163
# Run `git checkout`
164164
- uses: actions/checkout@v2
165165
# Install the `buf` CLI
166-
- uses: bufbuild/buf-setup-action@v1.24.0
166+
- uses: bufbuild/buf-setup-action@v1.25.0
167167
# Install `protoc`
168168
- uses: arduino/setup-protoc@v1
169169
```
@@ -179,4 +179,4 @@ steps:
179179
[compiler]: https://docs.buf.build/build/internal-compiler
180180
[protoc]: https://github.com/protocolbuffers/protobuf#protocol-compiler-installation
181181
[setup-protoc]: https://github.com/marketplace/actions/setup-protoc
182-
[version]: https://github.com/bufbuild/buf/releases/tag/v1.24.0
182+
[version]: https://github.com/bufbuild/buf/releases/tag/v1.25.0

‎action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ inputs:
88
version:
99
description: The version of buf to set up.
1010
required: false
11-
default: '1.24.0'
11+
default: '1.25.0'
1212
github_token:
1313
description: The GitHub token to use when making API requests.
1414
required: false

0 commit comments

Comments
 (0)
Please sign in to comment.