1919 # Run `git checkout`
2020 - uses : actions/checkout@v2
2121 # Install the `buf` CLI
22- - uses : bufbuild/buf-setup-action@v1.28.1
22+ - uses : bufbuild/buf-setup-action@v1.29.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.28.1 `][version] |
35+ | `version` | The version of the [`buf` CLI][buf-cli] to install | [`v1.29.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:
4747steps:
4848 - uses: actions/checkout@v2
4949 # Installs latest
50- - uses: bufbuild/buf-setup-action@v1.28.1
50+ - uses: bufbuild/buf-setup-action@v1.29.0
5151 - run: buf --version
5252` ` `
5353
@@ -56,11 +56,11 @@ Use the `version` parameter to pin to a specific version:
5656` ` ` yaml
5757steps:
5858 - uses: actions/checkout@v2
59- # Installs version 1.28.1
60- - uses: bufbuild/buf-setup-action@v1.28.1
59+ # Installs version 1.29.0
60+ - uses: bufbuild/buf-setup-action@v1.29.0
6161 with:
62- version: 1.28.1
63- # Should output 1.28.1
62+ version: 1.29.0
63+ # Should output 1.29.0
6464 - run: buf --version
6565` ` `
6666
@@ -70,7 +70,7 @@ recommended:
7070` ` ` yaml
7171steps:
7272 - uses: actions/checkout@v2
73- - uses: bufbuild/buf-setup-action@v1.28.1
73+ - uses: bufbuild/buf-setup-action@v1.29.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
8585steps:
86- - uses: bufbuild/buf-setup-action@v1.28.1
86+ - uses: bufbuild/buf-setup-action@v1.29.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
9797steps:
98- - uses: bufbuild/buf-setup-action@v1.28.1
98+ - uses: bufbuild/buf-setup-action@v1.29.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
108108steps:
109- - uses: bufbuild/buf-setup-action@v1.28.1
109+ - uses: bufbuild/buf-setup-action@v1.29.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.28.1
166+ - uses : bufbuild/buf-setup-action@v1.29.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.28.1
182+ [version]: https://github.com/bufbuild/buf/releases/tag/v1.29.0
0 commit comments