From 5a04b55e56096f40302de4cad83665cfc3497e0a Mon Sep 17 00:00:00 2001 From: Bevan Kay Date: Thu, 24 Jul 2025 10:10:01 +1000 Subject: [PATCH] tap: continue to autobump deprecated unsigned casks --- Library/Homebrew/tap.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Library/Homebrew/tap.rb b/Library/Homebrew/tap.rb index 71eb1a2fd0..077bdadb73 100644 --- a/Library/Homebrew/tap.rb +++ b/Library/Homebrew/tap.rb @@ -994,7 +994,8 @@ class Tap end @autobump ||= autobump_packages.select do |_, p| - next if p["deprecated"] || p["disabled"] + next if p["disabled"] + next if p["deprecated"] && p["deprecation_reason"] != "unsigned" next if p["skip_livecheck"] p["autobump"] == true