19
19
# Run `git checkout`
20
20
- uses : actions/checkout@v2
21
21
# Install the `buf` CLI
22
- - uses : bufbuild/buf-setup-action@v1.24 .0
22
+ - uses : bufbuild/buf-setup-action@v1.25 .0
23
23
# Ensure that `buf` is installed
24
24
- run : buf --version
25
25
` ` `
@@ -32,7 +32,7 @@ You can configure `buf-setup-action` with these parameters:
32
32
33
33
| Parameter | Description | Default |
34
34
|:---------------|:---------------------------------------------------|:-------------------|
35
- | `version` | The version of the [`buf` CLI][buf-cli] to install | [`v1.24 .0`][version] |
35
+ | `version` | The version of the [`buf` CLI][buf-cli] to install | [`v1.25 .0`][version] |
36
36
| `github_token` | The GitHub token to use when making API requests | |
37
37
| `buf_user` | The username to use for logging into Buf Schema registry. | |
38
38
| `buf_api_token` | The API token to use for logging into Buf Schema registry. | |
@@ -47,7 +47,7 @@ If `version` is unspecified, the latest version of `buf` is installed:
47
47
steps:
48
48
- uses: actions/checkout@v2
49
49
# Installs latest
50
- - uses: bufbuild/buf-setup-action@v1.24 .0
50
+ - uses: bufbuild/buf-setup-action@v1.25 .0
51
51
- run: buf --version
52
52
` ` `
53
53
@@ -56,11 +56,11 @@ Use the `version` parameter to pin to a specific version:
56
56
` ` ` yaml
57
57
steps:
58
58
- uses: actions/checkout@v2
59
- # Installs version 1.24 .0
60
- - uses: bufbuild/buf-setup-action@v1.24 .0
59
+ # Installs version 1.25 .0
60
+ - uses: bufbuild/buf-setup-action@v1.25 .0
61
61
with:
62
- version: 1.24 .0
63
- # Should output 1.24 .0
62
+ version: 1.25 .0
63
+ # Should output 1.25 .0
64
64
- run: buf --version
65
65
` ` `
66
66
@@ -70,7 +70,7 @@ recommended:
70
70
` ` ` yaml
71
71
steps:
72
72
- uses: actions/checkout@v2
73
- - uses: bufbuild/buf-setup-action@v1.24 .0
73
+ - uses: bufbuild/buf-setup-action@v1.25 .0
74
74
with:
75
75
version: latest
76
76
- run: buf --version
@@ -83,7 +83,7 @@ This may prevent rate limit issues when running on GitHub hosted runners:
83
83
84
84
` ` ` yaml
85
85
steps:
86
- - uses: bufbuild/buf-setup-action@v1.24 .0
86
+ - uses: bufbuild/buf-setup-action@v1.25 .0
87
87
with:
88
88
github_token: ${{ github.token }}
89
89
` ` `
@@ -95,7 +95,7 @@ you must still pass the token to the action:
95
95
96
96
` ` ` yaml
97
97
steps:
98
- - uses: bufbuild/buf-setup-action@v1.24 .0
98
+ - uses: bufbuild/buf-setup-action@v1.25 .0
99
99
with:
100
100
github_token: ${{ secrets.GITHUB_TOKEN }}
101
101
` ` `
@@ -106,7 +106,7 @@ If you are using Private [Remote Packages](https://docs.buf.build/bsr/remote-pac
106
106
107
107
` ` ` yaml
108
108
steps:
109
- - uses: bufbuild/buf-setup-action@v1.24 .0
109
+ - uses: bufbuild/buf-setup-action@v1.25 .0
110
110
with:
111
111
buf_user: ${{ secrets.buf_user }}
112
112
buf_api_token: ${{ secrets.buf_api_token }}
@@ -163,7 +163,7 @@ steps:
163
163
# Run ` git checkout`
164
164
- uses : actions/checkout@v2
165
165
# Install the `buf` CLI
166
- - uses : bufbuild/buf-setup-action@v1.24 .0
166
+ - uses : bufbuild/buf-setup-action@v1.25 .0
167
167
# Install `protoc`
168
168
- uses : arduino/setup-protoc@v1
169
169
` ` `
@@ -179,4 +179,4 @@ steps:
179
179
[compiler]: https://docs.buf.build/build/internal-compiler
180
180
[protoc]: https://github.com/protocolbuffers/protobuf#protocol-compiler-installation
181
181
[setup-protoc]: https://github.com/marketplace/actions/setup-protoc
182
- [version]: https://github.com/bufbuild/buf/releases/tag/v1.24 .0
182
+ [version]: https://github.com/bufbuild/buf/releases/tag/v1.25 .0
0 commit comments