Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.11.0 #91

Merged
merged 1 commit into from Dec 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 11 additions & 11 deletions README.md
Expand Up @@ -19,7 +19,7 @@ steps:
# Run `git checkout`
- uses: actions/checkout@v2
# Install the `buf` CLI
- uses: bufbuild/buf-setup-action@v1.10.0
- uses: bufbuild/buf-setup-action@v1.11.0
# Ensure that `buf` is installed
- run: buf --version
```
Expand All @@ -30,7 +30,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.10.0`][version] |
| `version` | The version of the [`buf` CLI][buf-cli] to install | [`v1.11.0`][version] |
| `github_token` | The GitHub token to use when making API requests | |

> These parameters are derived from [`action.yml`](./action.yml).
Expand All @@ -43,7 +43,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.10.0
- uses: bufbuild/buf-setup-action@v1.11.0
- run: buf --version
```

Expand All @@ -52,11 +52,11 @@ Use the `version` parameter to pin to a specific version:
```yaml
steps:
- uses: actions/checkout@v2
# Installs version 1.10.0
- uses: bufbuild/buf-setup-action@v1.10.0
# Installs version 1.11.0
- uses: bufbuild/buf-setup-action@v1.11.0
with:
version: 1.10.0
# Should output 1.10.0
version: 1.11.0
# Should output 1.11.0
- run: buf --version
```

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

```yaml
steps:
- uses: bufbuild/buf-setup-action@v1.10.0
- uses: bufbuild/buf-setup-action@v1.11.0
with:
github_token: ${{ github.token }}
```
Expand Down Expand Up @@ -123,7 +123,7 @@ steps:
# Run `git checkout`
- uses: actions/checkout@v2
# Install the `buf` CLI
- uses: bufbuild/buf-setup-action@v1.10.0
- uses: bufbuild/buf-setup-action@v1.11.0
# Install `protoc`
- uses: arduino/setup-protoc@v1
```
Expand All @@ -139,4 +139,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.10.0
[version]: https://github.com/bufbuild/buf/releases/tag/v1.11.0
2 changes: 1 addition & 1 deletion action.yml
Expand Up @@ -8,7 +8,7 @@ inputs:
version:
description: The version of buf to set up.
required: false
default: '1.10.0'
default: '1.11.0'
github_token:
description: The GitHub token to use when making API requests.
required: false
Expand Down