Skip to content

Commit

Permalink
Release v1.31.0 (#202)
Browse files Browse the repository at this point in the history
Release prepared for 1.31.0

Co-authored-by: doriable <doriable@users.noreply.github.com>
  • Loading branch information
app-token-buf-setup-action[bot] and doriable committed Apr 23, 2024
1 parent 9990c72 commit 480a0ee
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
26 changes: 13 additions & 13 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.30.1
- uses: bufbuild/buf-setup-action@v1.31.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.30.1`][version] |
| `version` | The version of the [`buf` CLI][buf-cli] to install | [`v1.31.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 @@ -47,7 +47,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.30.1
- uses: bufbuild/buf-setup-action@v1.31.0
- run: buf --version
```

Expand All @@ -56,11 +56,11 @@ Use the `version` parameter to pin to a specific version:
```yaml
steps:
- uses: actions/checkout@v2
# Installs version 1.30.1
- uses: bufbuild/buf-setup-action@v1.30.1
# Installs version 1.31.0
- uses: bufbuild/buf-setup-action@v1.31.0
with:
version: 1.30.1
# Should output 1.30.1
version: 1.31.0
# Should output 1.31.0
- run: buf --version
```

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

```yaml
steps:
- uses: bufbuild/buf-setup-action@v1.30.1
- uses: bufbuild/buf-setup-action@v1.31.0
with:
github_token: ${{ github.token }}
```
Expand All @@ -95,7 +95,7 @@ you must still pass the token to the action:

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

```yaml
steps:
- uses: bufbuild/buf-setup-action@v1.30.1
- uses: bufbuild/buf-setup-action@v1.31.0
with:
buf_user: ${{ secrets.buf_user }}
buf_api_token: ${{ secrets.buf_api_token }}
Expand Down Expand Up @@ -163,7 +163,7 @@ steps:
# Run `git checkout`
- uses: actions/checkout@v2
# Install the `buf` CLI
- uses: bufbuild/buf-setup-action@v1.30.1
- uses: bufbuild/buf-setup-action@v1.31.0
# Install `protoc`
- uses: arduino/setup-protoc@v1
```
Expand All @@ -179,4 +179,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.30.1
[version]: https://github.com/bufbuild/buf/releases/tag/v1.31.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.30.1'
default: '1.31.0'
github_token:
description: The GitHub token to use when making API requests.
required: false
Expand Down

0 comments on commit 480a0ee

Please sign in to comment.