Skip to content

Commit

Permalink
Bump bufbuild/buf-setup-action from 1.29.0 to 1.30.0 (#2842)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Stephen Buttolph <[email protected]>
  • Loading branch information
dependabot[bot] and StephenButtolph authored Mar 16, 2024
1 parent b62846f commit a18c4a3
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/buf-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: bufbuild/buf-setup-action@v1.29.0
- uses: bufbuild/buf-setup-action@v1.30.0
- uses: bufbuild/buf-push-action@v1
with:
input: "proto"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: bufbuild/buf-setup-action@v1.29.0
- uses: bufbuild/buf-setup-action@v1.30.0
with:
github_token: ${{ github.token }}
- uses: bufbuild/buf-lint-action@v1
Expand All @@ -153,7 +153,7 @@ jobs:
with:
go-version: ${{ env.go_version }}
check-latest: true
- uses: bufbuild/buf-setup-action@v1.29.0
- uses: bufbuild/buf-setup-action@v1.30.0
- shell: bash
run: scripts/protobuf_codegen.sh
- shell: bash
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ To regenerate the protobuf go code, run `scripts/protobuf_codegen.sh` from the r

This should only be necessary when upgrading protobuf versions or modifying .proto definition files.

To use this script, you must have [buf](https://docs.buf.build/installation) (v1.29.0), protoc-gen-go (v1.33.0) and protoc-gen-go-grpc (v1.3.0) installed.
To use this script, you must have [buf](https://docs.buf.build/installation) (v1.30.0), protoc-gen-go (v1.33.0) and protoc-gen-go-grpc (v1.3.0) installed.

To install the buf dependencies:

Expand Down
2 changes: 1 addition & 1 deletion proto/Dockerfile.buf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM bufbuild/buf:1.29.0 AS builder
FROM bufbuild/buf:1.30.0 AS builder

FROM ubuntu:20.04

Expand Down
2 changes: 1 addition & 1 deletion scripts/protobuf_codegen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fi
# any version changes here should also be bumped in Dockerfile.buf
# ref. https://docs.buf.build/installation
# ref. https://github.com/bufbuild/buf/releases
BUF_VERSION='1.29.0'
BUF_VERSION='1.30.0'
if [[ $(buf --version | cut -f2 -d' ') != "${BUF_VERSION}" ]]; then
echo "could not find buf ${BUF_VERSION}, is it installed + in PATH?"
exit 255
Expand Down

0 comments on commit a18c4a3

Please sign in to comment.