From 4fe3a3fb67d8358d1647a953130ee0eb6775f4d7 Mon Sep 17 00:00:00 2001 From: doriable Date: Mon, 25 May 2026 18:50:40 +0000 Subject: [PATCH 1/3] Update version to 1.70.0 --- Formula/buf.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/buf.rb b/Formula/buf.rb index 0a0d0a7..121f56f 100644 --- a/Formula/buf.rb +++ b/Formula/buf.rb @@ -2,9 +2,9 @@ class Buf < Formula desc "The best way of working with Protocol Buffers." homepage "https://buf.build" head "https://github.com/bufbuild/buf.git", branch: "main" - url "https://github.com/bufbuild/buf/archive/v1.69.0.tar.gz" - sha256 "b5d662379d597a3010b9fde72d6102642d83b192b61138002a9a4a788e40806a" - version "1.69.0" + url "https://github.com/bufbuild/buf/archive/v1.70.0.tar.gz" + sha256 "7da0f12d42d00a4a4fabf89af37e2e02ad5958bc7e977a713e4bc01b2a232899" + version "1.70.0" depends_on "go" => :build From 2062afa3abe6a4376a025307f20f8ca579bdb874 Mon Sep 17 00:00:00 2001 From: Doria Keung Date: Mon, 25 May 2026 15:16:19 -0400 Subject: [PATCH 2/3] Add bubblewrap dependency for linux sandbox (CI in developer mode) --- .github/workflows/ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4fbe70c..b5ab7e7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -30,5 +30,6 @@ jobs: - uses: actions/checkout@v6 - name: Setup Homebrew uses: Homebrew/actions/setup-homebrew@main + - run: brew install bubblewrap - run: brew install --build-from-source Formula/buf.rb - run: buf --version From c4168e61992e69706e7ae26048684b18b3800422 Mon Sep 17 00:00:00 2001 From: Doria Keung Date: Mon, 25 May 2026 15:21:30 -0400 Subject: [PATCH 3/3] Avoid using sandbox instead --- .github/workflows/ci.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b5ab7e7..a026f0b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -30,6 +30,7 @@ jobs: - uses: actions/checkout@v6 - name: Setup Homebrew uses: Homebrew/actions/setup-homebrew@main - - run: brew install bubblewrap - run: brew install --build-from-source Formula/buf.rb + env: + HOMEBREW_NO_SANDBOX_LINUX: 1 - run: buf --version