Skip to content

Commit

Permalink
Release v1.15.0 (#107)
Browse files Browse the repository at this point in the history
Release prepared for 1.15.0

Co-authored-by: joshcarp <joshcarp@users.noreply.github.com>
  • Loading branch information
app-token-buf-setup-action[bot] and joshcarp committed Feb 28, 2023
1 parent d5f1297 commit b5ee8ca
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ steps:
# Run `git checkout`
- uses: actions/checkout@v2
# Install the `buf` CLI
- uses: bufbuild/buf-setup-action@v1.14.0
- uses: bufbuild/buf-setup-action@v1.15.0
# Ensure that `buf` is installed
- run: buf --version
```
Expand All @@ -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.14.0`][version] |
| `version` | The version of the [`buf` CLI][buf-cli] to install | [`v1.15.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. | |
Expand All @@ -46,7 +46,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.14.0
- uses: bufbuild/buf-setup-action@v1.15.0
- run: buf --version
```

Expand All @@ -55,11 +55,11 @@ Use the `version` parameter to pin to a specific version:
```yaml
steps:
- uses: actions/checkout@v2
# Installs version 1.14.0
- uses: bufbuild/buf-setup-action@v1.14.0
# Installs version 1.15.0
- uses: bufbuild/buf-setup-action@v1.15.0
with:
version: 1.14.0
# Should output 1.14.0
version: 1.15.0
# Should output 1.15.0
- run: buf --version
```

Expand All @@ -69,7 +69,7 @@ recommended:
```yaml
steps:
- uses: actions/checkout@v2
- uses: bufbuild/buf-setup-action@v1.14.0
- uses: bufbuild/buf-setup-action@v1.15.0
with:
version: latest
- run: buf --version
Expand All @@ -82,7 +82,7 @@ This may prevent rate limit issues when running on GitHub hosted runners:

```yaml
steps:
- uses: bufbuild/buf-setup-action@v1.14.0
- uses: bufbuild/buf-setup-action@v1.15.0
with:
github_token: ${{ github.token }}
```
Expand All @@ -93,7 +93,7 @@ If you are using Private [Remote Packages](https://docs.buf.build/bsr/remote-pac

```yaml
steps:
- uses: bufbuild/buf-setup-action@v1.14.0
- uses: bufbuild/buf-setup-action@v1.15.0
with:
buf_user: ${{ secrets.buf_user }}
buf_api_token: ${{ secrets.buf_api_token }}
Expand Down Expand Up @@ -144,7 +144,7 @@ steps:
# Run `git checkout`
- uses: actions/checkout@v2
# Install the `buf` CLI
- uses: bufbuild/buf-setup-action@v1.14.0
- uses: bufbuild/buf-setup-action@v1.15.0
# Install `protoc`
- uses: arduino/setup-protoc@v1
```
Expand All @@ -160,4 +160,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.14.0
[version]: https://github.com/bufbuild/buf/releases/tag/v1.15.0
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ inputs:
version:
description: The version of buf to set up.
required: false
default: '1.14.0'
default: '1.15.0'
github_token:
description: The GitHub token to use when making API requests.
required: false
Expand Down

0 comments on commit b5ee8ca

Please sign in to comment.