From 21d38ff444ce33059d01add65f89afd08b0f9681 Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Thu, 17 Jul 2025 14:40:17 -0400 Subject: [PATCH] Revert "ci: force ninja update on windows" This reverts commit 28c690074c0eb31c080029639f73618b67aebc91. --- .github/actions/install-dependencies/action.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/actions/install-dependencies/action.yml b/.github/actions/install-dependencies/action.yml index 0e0712a41..2dfe1ba4b 100644 --- a/.github/actions/install-dependencies/action.yml +++ b/.github/actions/install-dependencies/action.yml @@ -27,10 +27,9 @@ runs: steps: - name: Install Depends + if: ${{ runner.os != 'Windows' }} run: | - if [ "$RUNNER_OS" == "Windows" ]; then - choco install ninja - elif [ "$RUNNER_OS" == "macOS" ]; then + if [ "$RUNNER_OS" == "macOS" ]; then brew install googletest openssl --quiet elif [ "$RUNNER_OS" == "Linux" ]; then if [ ${{inputs.like}} == "debian" ]; then