Skip to content

Commit c0d6e88

Browse files
Release v1.13.0 (#97)
Release prepared for 1.13.0 Co-authored-by: joshcarp <[email protected]>
1 parent fbe5661 commit c0d6e88

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

README.md

Lines changed: 12 additions & 12 deletions
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.12.0
22+
- uses: bufbuild/buf-setup-action@v1.13.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.12.0`][version] |
35+
| `version` | The version of the [`buf` CLI][buf-cli] to install | [`v1.13.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. | |
@@ -46,7 +46,7 @@ If `version` is unspecified, the latest version of `buf` is installed:
4646
steps:
4747
- uses: actions/checkout@v2
4848
# Installs latest
49-
- uses: bufbuild/buf-setup-action@v1.12.0
49+
- uses: bufbuild/buf-setup-action@v1.13.0
5050
- run: buf --version
5151
```
5252

@@ -55,11 +55,11 @@ Use the `version` parameter to pin to a specific version:
5555
```yaml
5656
steps:
5757
- uses: actions/checkout@v2
58-
# Installs version 1.12.0
59-
- uses: bufbuild/buf-setup-action@v1.12.0
58+
# Installs version 1.13.0
59+
- uses: bufbuild/buf-setup-action@v1.13.0
6060
with:
61-
version: 1.12.0
62-
# Should output 1.12.0
61+
version: 1.13.0
62+
# Should output 1.13.0
6363
- run: buf --version
6464
```
6565

@@ -69,7 +69,7 @@ recommended:
6969
```yaml
7070
steps:
7171
- uses: actions/checkout@v2
72-
- uses: bufbuild/buf-setup-action@v1.12.0
72+
- uses: bufbuild/buf-setup-action@v1.13.0
7373
with:
7474
version: latest
7575
- run: buf --version
@@ -82,7 +82,7 @@ This may prevent rate limit issues when running on GitHub hosted runners:
8282

8383
```yaml
8484
steps:
85-
- uses: bufbuild/buf-setup-action@v1.12.0
85+
- uses: bufbuild/buf-setup-action@v1.13.0
8686
with:
8787
github_token: ${{ github.token }}
8888
```
@@ -93,7 +93,7 @@ If you are using Private [Remote Packages](https://docs.buf.build/bsr/remote-pac
9393

9494
```yaml
9595
steps:
96-
- uses: bufbuild/buf-setup-action@v1.12.0
96+
- uses: bufbuild/buf-setup-action@v1.13.0
9797
with:
9898
buf_user: ${{ secrets.buf_user }}
9999
buf_api_token: ${{ secrets.buf_api_token }}
@@ -144,7 +144,7 @@ steps:
144144
# Run `git checkout`
145145
- uses: actions/checkout@v2
146146
# Install the `buf` CLI
147-
- uses: bufbuild/buf-setup-action@v1.12.0
147+
- uses: bufbuild/buf-setup-action@v1.13.0
148148
# Install `protoc`
149149
- uses: arduino/setup-protoc@v1
150150
```
@@ -160,4 +160,4 @@ steps:
160160
[compiler]: https://docs.buf.build/build/internal-compiler
161161
[protoc]: https://github.com/protocolbuffers/protobuf#protocol-compiler-installation
162162
[setup-protoc]: https://github.com/marketplace/actions/setup-protoc
163-
[version]: https://github.com/bufbuild/buf/releases/tag/v1.12.0
163+
[version]: https://github.com/bufbuild/buf/releases/tag/v1.13.0

action.yml

Lines changed: 1 addition & 1 deletion
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.12.0'
11+
default: '1.13.0'
1212
github_token:
1313
description: The GitHub token to use when making API requests.
1414
required: false

0 commit comments

Comments
 (0)