From de0cc7a0cac0e94f685ac46d75064c89e2f810a8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 29 Jun 2026 02:29:18 +0000 Subject: [PATCH 1/5] Initial plan From 6f9a37fd3f98738d893ef28e46b0e27c6d5190f1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 29 Jun 2026 02:30:39 +0000 Subject: [PATCH 2/5] Fix macOS ARM64 CI: trust Homebrew tap before install, update action to @main --- .github/workflows/validate-homebrew.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/validate-homebrew.yml b/.github/workflows/validate-homebrew.yml index 0df3410..fc87801 100644 --- a/.github/workflows/validate-homebrew.yml +++ b/.github/workflows/validate-homebrew.yml @@ -31,11 +31,12 @@ jobs: uses: actions/checkout@v4 - name: Set up Homebrew - uses: Homebrew/actions/setup-homebrew@master + uses: Homebrew/actions/setup-homebrew@main - name: Tap and install modernize run: | brew tap ${{ github.repository }} https://github.com/${{ github.repository }} + brew trust ${{ github.repository }} brew install modernize - name: Extract expected version from formula From 1bb428802e1fa95de0b67354188f3e94aaec8ec0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 29 Jun 2026 02:39:38 +0000 Subject: [PATCH 3/5] =?UTF-8?q?docs:=20fix=20Homebrew=20tap=20name=20in=20?= =?UTF-8?q?README=20(microsoft/modernize=20=E2=86=92=20microsoft/modernize?= =?UTF-8?q?-cli)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6c3c08c..66b7cbc 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Minimum requirements: **Option 1 — Homebrew:** ```bash -brew tap microsoft/modernize https://github.com/microsoft/modernize-cli +brew tap microsoft/modernize-cli https://github.com/microsoft/modernize-cli brew install modernize ``` From c47a17cdcb10278e934006092e629d613c0a91f4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 29 Jun 2026 02:41:22 +0000 Subject: [PATCH 4/5] =?UTF-8?q?Revert=20"docs:=20fix=20Homebrew=20tap=20na?= =?UTF-8?q?me=20in=20README=20(microsoft/modernize=20=E2=86=92=20microsoft?= =?UTF-8?q?/modernize-cli)"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 1bb428802e1fa95de0b67354188f3e94aaec8ec0. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 66b7cbc..6c3c08c 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Minimum requirements: **Option 1 — Homebrew:** ```bash -brew tap microsoft/modernize-cli https://github.com/microsoft/modernize-cli +brew tap microsoft/modernize https://github.com/microsoft/modernize-cli brew install modernize ``` From 7e320cae80eb6ed43cdddc5010351597aeea706b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 29 Jun 2026 02:45:28 +0000 Subject: [PATCH 5/5] docs: add brew trust step before brew install in README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 6c3c08c..ea7526e 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,7 @@ Minimum requirements: **Option 1 — Homebrew:** ```bash brew tap microsoft/modernize https://github.com/microsoft/modernize-cli +brew trust microsoft/modernize brew install modernize ```