From e87296f356b4fa1422a31e29cf39e78313ef2b5d Mon Sep 17 00:00:00 2001 From: Riccardo Cipolleschi Date: Mon, 23 Dec 2024 07:46:02 -0800 Subject: [PATCH] Do not install jq as it is already installed (#48363) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/48363 jq is already installed on M1 machines on GithubActions. There is no need to install it again and this is outputting a warning in CI: {F1974100065} ## Changelog: [Internal] - Do not install jq as it is already installed Reviewed By: blakef Differential Revision: D67599961 fbshipit-source-id: 1f621f796b0c67ec877fc35269137537618f47ae --- .github/actions/maestro-ios/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/maestro-ios/action.yml b/.github/actions/maestro-ios/action.yml index c8e0c7a7cd2..e71fd6d0c2c 100644 --- a/.github/actions/maestro-ios/action.yml +++ b/.github/actions/maestro-ios/action.yml @@ -36,7 +36,7 @@ runs: shell: bash run: | brew tap facebook/fb - brew install facebook/fb/idb-companion jq + brew install facebook/fb/idb-companion - name: Set up JDK 11 uses: actions/setup-java@v2 with: