From b45a2040a5104c303467bad710624a56f27105cd Mon Sep 17 00:00:00 2001 From: gxz Date: Thu, 31 Oct 2024 19:59:22 +0800 Subject: [PATCH] chore: optimize --- .github/actions/setup/action.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 2a66cd50..720118ef 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -17,9 +17,7 @@ runs: - name: Setup by gem if: ${{ runner.os == 'macOS' }} - run: - gem install activesupport -v 7.0.8 - gem install xcodeproj -v 1.25.1 + run: gem install 'activesupport:7.0.8' 'xcodeproj:1.25.1' shell: bash - name: Setup Cocoapods @@ -42,7 +40,7 @@ runs: - name: Install dependencies env: - POD_INSTALL: "0" + POD_INSTALL: '0' if: steps.yarn-cache.outputs.cache-hit != 'true' run: yarn install --immutable shell: bash