24
24
# Run `git checkout`
25
25
- uses : actions/checkout@v2
26
26
# Install the `buf` CLI
27
- - uses : bufbuild/buf-setup-action@v1.48 .0
27
+ - uses : bufbuild/buf-setup-action@v1.49 .0
28
28
# Ensure that `buf` is installed
29
29
- run : buf --version
30
30
` ` `
@@ -37,7 +37,7 @@ You can configure `buf-setup-action` with these parameters:
37
37
38
38
| Parameter | Description | Default |
39
39
|:---------------|:---------------------------------------------------|:-------------------|
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] |
41
41
| `github_token` | The GitHub token to use when making API requests | |
42
42
| `buf_user` | The username to use for logging into Buf Schema registry. | |
43
43
| `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:
52
52
steps:
53
53
- uses: actions/checkout@v2
54
54
# Installs latest
55
- - uses: bufbuild/buf-setup-action@v1.48 .0
55
+ - uses: bufbuild/buf-setup-action@v1.49 .0
56
56
- run: buf --version
57
57
` ` `
58
58
@@ -61,11 +61,11 @@ Use the `version` parameter to pin to a specific version:
61
61
` ` ` yaml
62
62
steps:
63
63
- 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
66
66
with:
67
- version: 1.48 .0
68
- # Should output 1.48 .0
67
+ version: 1.49 .0
68
+ # Should output 1.49 .0
69
69
- run: buf --version
70
70
` ` `
71
71
@@ -75,7 +75,7 @@ recommended:
75
75
` ` ` yaml
76
76
steps:
77
77
- uses: actions/checkout@v2
78
- - uses: bufbuild/buf-setup-action@v1.48 .0
78
+ - uses: bufbuild/buf-setup-action@v1.49 .0
79
79
with:
80
80
version: latest
81
81
- run: buf --version
@@ -88,7 +88,7 @@ This may prevent rate limit issues when running on GitHub hosted runners:
88
88
89
89
` ` ` yaml
90
90
steps:
91
- - uses: bufbuild/buf-setup-action@v1.48 .0
91
+ - uses: bufbuild/buf-setup-action@v1.49 .0
92
92
with:
93
93
github_token: ${{ github.token }}
94
94
` ` `
@@ -100,7 +100,7 @@ you must still pass the token to the action:
100
100
101
101
` ` ` yaml
102
102
steps:
103
- - uses: bufbuild/buf-setup-action@v1.48 .0
103
+ - uses: bufbuild/buf-setup-action@v1.49 .0
104
104
with:
105
105
github_token: ${{ secrets.GITHUB_TOKEN }}
106
106
` ` `
@@ -111,7 +111,7 @@ If you are using Private [Remote Packages](https://docs.buf.build/bsr/remote-pac
111
111
112
112
` ` ` yaml
113
113
steps:
114
- - uses: bufbuild/buf-setup-action@v1.48 .0
114
+ - uses: bufbuild/buf-setup-action@v1.49 .0
115
115
with:
116
116
buf_user: ${{ secrets.buf_user }}
117
117
buf_api_token: ${{ secrets.buf_api_token }}
@@ -168,7 +168,7 @@ steps:
168
168
# Run ` git checkout`
169
169
- uses : actions/checkout@v2
170
170
# Install the `buf` CLI
171
- - uses : bufbuild/buf-setup-action@v1.48 .0
171
+ - uses : bufbuild/buf-setup-action@v1.49 .0
172
172
# Install `protoc`
173
173
- uses : arduino/setup-protoc@v1
174
174
` ` `
@@ -185,4 +185,4 @@ steps:
185
185
[compiler]: https://docs.buf.build/build/internal-compiler
186
186
[protoc]: https://github.com/protocolbuffers/protobuf#protocol-compiler-installation
187
187
[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
0 commit comments