From c14b5524ea455f0b4f1fab8009adcab6e8248610 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 4 Jun 2026 20:49:33 +0000 Subject: [PATCH 1/2] chore(deps): update homebrew/actions digest to d0dd492 --- .github/workflows/validate-brewfiles.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validate-brewfiles.yaml b/.github/workflows/validate-brewfiles.yaml index 9155c9c3..a57697c1 100644 --- a/.github/workflows/validate-brewfiles.yaml +++ b/.github/workflows/validate-brewfiles.yaml @@ -14,7 +14,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 - name: Set up Homebrew - uses: Homebrew/actions/setup-homebrew@a84a03efc108f7d05469800fd48890c1cd34a6ad # main + uses: Homebrew/actions/setup-homebrew@d0dd492210067c1b5f8857ab6c5dd52c29944e44 # main - name: Validate Brewfiles shell: bash From 72808481e9b16b6603bd160c90c7574f1161add4 Mon Sep 17 00:00:00 2001 From: "Jorge O. Castro" Date: Thu, 4 Jun 2026 16:53:33 -0400 Subject: [PATCH 2/2] fix(ci): trim trailing whitespace in validate-brewfiles.yaml Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/validate-brewfiles.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/validate-brewfiles.yaml b/.github/workflows/validate-brewfiles.yaml index a57697c1..6dcd04d2 100644 --- a/.github/workflows/validate-brewfiles.yaml +++ b/.github/workflows/validate-brewfiles.yaml @@ -26,15 +26,15 @@ jobs: while IFS= read -r -d '' brewfile ; do echo "::group:: ===$(basename $brewfile)===" - + grep -E -e "^tap" "$brewfile" > taps.Brewfile || true echo "Syncing taps..." brew bundle --file=./taps.Brewfile > /dev/null 2>&1 || true - + # Extract combined list for parallel check FORMULAS=$(grep -E '^\s*brew\s+["'\'']' "$brewfile" | sed -E 's/^\s*brew\s+["'\'']([^"'\'']+)["'\''].*/formula \1/' || true) CASKS=$(grep -E '^\s*cask\s+["'\'']' "$brewfile" | sed -E 's/^\s*cask\s+["'\'']([^"'\'']+)["'\''].*/cask \1/' || true) - + ENTRIES=$(printf "%s\n%s" "$FORMULAS" "$CASKS" | grep -v '^\s*$' || true) if [ -n "$ENTRIES" ]; then @@ -51,7 +51,7 @@ jobs: else echo "No formulas or casks found." fi - + echo "::endgroup::" done < <(find "system_files/shared/usr/share/ublue-os/homebrew" -iname '*\.Brewfile*' -print0)