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.27.1-1 #170

Merged
merged 2 commits into from
Oct 27, 2023
Merged
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
18 changes: 9 additions & 9 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.27.1
- uses: bufbuild/buf-setup-action@v1.27.1-1
# Ensure that `buf` is installed
- run: buf --version
```
Expand Down Expand Up @@ -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.27.1
- uses: bufbuild/buf-setup-action@v1.27.1-1
- run: buf --version
```

Expand All @@ -56,8 +56,8 @@ Use the `version` parameter to pin to a specific version:
```yaml
steps:
- uses: actions/checkout@v2
# Installs version 1.27.1
- uses: bufbuild/buf-setup-action@v1.27.1
# Installs version 1.27.1-1
- uses: bufbuild/buf-setup-action@v1.27.1-1
with:
version: 1.27.1
# Should output 1.27.1
Expand All @@ -70,7 +70,7 @@ recommended:
```yaml
steps:
- uses: actions/checkout@v2
- uses: bufbuild/buf-setup-action@v1.27.1
- uses: bufbuild/buf-setup-action@v1.27.1-1
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.27.1
- uses: bufbuild/buf-setup-action@v1.27.1-1
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.27.1
- uses: bufbuild/buf-setup-action@v1.27.1-1
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.27.1
- uses: bufbuild/buf-setup-action@v1.27.1-1
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.27.1
- uses: bufbuild/buf-setup-action@v1.27.1-1
# Install `protoc`
- uses: arduino/setup-protoc@v1
```
Expand Down