From 11e274ce84c604e4c849a7494cd8d24ddf0b8e7d Mon Sep 17 00:00:00 2001 From: TerrifiedBug Date: Thu, 27 Aug 2026 20:53:40 +0100 Subject: [PATCH] fix: drop deprecated depends_on macos string in the cask Homebrew warns on every install: "Calling string comparison format for depends_on macos: is deprecated! Use depends_on macos: :sonoma instead." A bare symbol already means minimum version. --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6cf0ad6..27bd972 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -249,7 +249,9 @@ jobs: homepage "https://github.com/TerrifiedBug/browseroute" # Signed and notarized. Opens from Applications with no Gatekeeper prompt. - depends_on macos: ">= :sonoma" + # A bare symbol is the minimum version. The ">= :sonoma" string + # form is deprecated and warns on every brew install. + depends_on macos: :sonoma app "Browseroute.app"