Skip to content

Commit 50e6083

Browse files
committedJan 7, 2025
Update version to 1.49.0
1 parent 2ff90c6 commit 50e6083

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed
 

‎README.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ steps:
2424
# Run `git checkout`
2525
- uses: actions/checkout@v2
2626
# Install the `buf` CLI
27-
- uses: bufbuild/buf-setup-action@v1.48.0
27+
- uses: bufbuild/buf-setup-action@v1.49.0
2828
# Ensure that `buf` is installed
2929
- run: buf --version
3030
```
@@ -37,7 +37,7 @@ You can configure `buf-setup-action` with these parameters:
3737

3838
| Parameter | Description | Default |
3939
|:---------------|:---------------------------------------------------|:-------------------|
40-
| `version` | The version of the [`buf` CLI][buf-cli] to install | [`v1.48.0`][version] |
40+
| `version` | The version of the [`buf` CLI][buf-cli] to install | [`v1.49.0`][version] |
4141
| `github_token` | The GitHub token to use when making API requests | |
4242
| `buf_user` | The username to use for logging into Buf Schema registry. | |
4343
| `buf_api_token` | The API token to use for logging into Buf Schema registry. | |
@@ -52,7 +52,7 @@ If `version` is unspecified, the latest version of `buf` is installed:
5252
steps:
5353
- uses: actions/checkout@v2
5454
# Installs latest
55-
- uses: bufbuild/buf-setup-action@v1.48.0
55+
- uses: bufbuild/buf-setup-action@v1.49.0
5656
- run: buf --version
5757
```
5858

@@ -61,11 +61,11 @@ Use the `version` parameter to pin to a specific version:
6161
```yaml
6262
steps:
6363
- uses: actions/checkout@v2
64-
# Installs version 1.48.0
65-
- uses: bufbuild/buf-setup-action@v1.48.0
64+
# Installs version 1.49.0
65+
- uses: bufbuild/buf-setup-action@v1.49.0
6666
with:
67-
version: 1.48.0
68-
# Should output 1.48.0
67+
version: 1.49.0
68+
# Should output 1.49.0
6969
- run: buf --version
7070
```
7171

@@ -75,7 +75,7 @@ recommended:
7575
```yaml
7676
steps:
7777
- uses: actions/checkout@v2
78-
- uses: bufbuild/buf-setup-action@v1.48.0
78+
- uses: bufbuild/buf-setup-action@v1.49.0
7979
with:
8080
version: latest
8181
- run: buf --version
@@ -88,7 +88,7 @@ This may prevent rate limit issues when running on GitHub hosted runners:
8888

8989
```yaml
9090
steps:
91-
- uses: bufbuild/buf-setup-action@v1.48.0
91+
- uses: bufbuild/buf-setup-action@v1.49.0
9292
with:
9393
github_token: ${{ github.token }}
9494
```
@@ -100,7 +100,7 @@ you must still pass the token to the action:
100100

101101
```yaml
102102
steps:
103-
- uses: bufbuild/buf-setup-action@v1.48.0
103+
- uses: bufbuild/buf-setup-action@v1.49.0
104104
with:
105105
github_token: ${{ secrets.GITHUB_TOKEN }}
106106
```
@@ -111,7 +111,7 @@ If you are using Private [Remote Packages](https://docs.buf.build/bsr/remote-pac
111111

112112
```yaml
113113
steps:
114-
- uses: bufbuild/buf-setup-action@v1.48.0
114+
- uses: bufbuild/buf-setup-action@v1.49.0
115115
with:
116116
buf_user: ${{ secrets.buf_user }}
117117
buf_api_token: ${{ secrets.buf_api_token }}
@@ -168,7 +168,7 @@ steps:
168168
# Run `git checkout`
169169
- uses: actions/checkout@v2
170170
# Install the `buf` CLI
171-
- uses: bufbuild/buf-setup-action@v1.48.0
171+
- uses: bufbuild/buf-setup-action@v1.49.0
172172
# Install `protoc`
173173
- uses: arduino/setup-protoc@v1
174174
```
@@ -185,4 +185,4 @@ steps:
185185
[compiler]: https://docs.buf.build/build/internal-compiler
186186
[protoc]: https://github.com/protocolbuffers/protobuf#protocol-compiler-installation
187187
[setup-protoc]: https://github.com/marketplace/actions/setup-protoc
188-
[version]: https://github.com/bufbuild/buf/releases/tag/v1.48.0
188+
[version]: https://github.com/bufbuild/buf/releases/tag/v1.49.0

‎action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ inputs:
88
version:
99
description: The version of buf to set up.
1010
required: false
11-
default: '1.48.0'
11+
default: '1.49.0'
1212
github_token:
1313
description: The GitHub token to use when making API requests.
1414
required: false

0 commit comments

Comments
 (0)