From 85b7fd9c569d960adaa3143617debfaa12303bc2 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Fri, 7 Nov 2025 17:26:02 -0800 Subject: [PATCH] [CI] Drop use of install-ninja action We can just use brew directly since this step is always run on macOS runners. --- .github/workflows/premerge.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/premerge.yaml b/.github/workflows/premerge.yaml index 8503b2d62c5eb..dfe7e0068e84e 100644 --- a/.github/workflows/premerge.yaml +++ b/.github/workflows/premerge.yaml @@ -190,7 +190,8 @@ jobs: with: max-size: "2000M" - name: Install Ninja - uses: llvm/actions/install-ninja@42d80571b13f4599bbefbc7189728b64723c7f78 # main + run: | + brew install ninja - name: Build and Test run: | source <(git diff --name-only HEAD~1...HEAD | python3 .ci/compute_projects.py)