From 7bb77d66f552c4279b92302a28d2e3b2be4f64af Mon Sep 17 00:00:00 2001 From: Mladen Jablanovic Date: Thu, 17 Sep 2026 13:40:45 +0200 Subject: [PATCH] fix(cli): bump homebrew formula action to v10 to fix safe_system error The pinned v7 commit of dawidd6/action-homebrew-bump-formula fails with "undefined method 'safe_system' for module Homebrew (NoMethodError)" against current Homebrew core. v10 includes upstream commit e762a0d ("Fix safe_system undefined error") that resolves this. Co-Authored-By: Claude Sonnet 5 --- clients/cli/.github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/cli/.github/workflows/release.yml b/clients/cli/.github/workflows/release.yml index a06a12f52..936e45191 100644 --- a/clients/cli/.github/workflows/release.yml +++ b/clients/cli/.github/workflows/release.yml @@ -83,7 +83,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Update Homebrew formula - uses: dawidd6/action-homebrew-bump-formula@1446dca236b0440c6f02723a3f14f13be2c04ab0 # v7 + uses: dawidd6/action-homebrew-bump-formula@b12d2bc99c46444125e606142f28200ec71a1214 # v10 with: # Required, custom GitHub access token with the 'public_repo' and 'workflow' scopes token: ${{secrets.GH_ACCESS_TOKEN}}