From 71b9f69072e6a8d9c490008fc56f6dc14ebe7475 Mon Sep 17 00:00:00 2001 From: "Dr.Blank" <64108942+Dr-Blank@users.noreply.github.com> Date: Fri, 4 Apr 2025 23:10:54 +0530 Subject: [PATCH] Remove unnecessary shell specification for Flutter dependency setup to simplify action configuration --- .github/actions/flutter-setup/action.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/actions/flutter-setup/action.yaml b/.github/actions/flutter-setup/action.yaml index fe9ad47..3ead07e 100644 --- a/.github/actions/flutter-setup/action.yaml +++ b/.github/actions/flutter-setup/action.yaml @@ -37,12 +37,8 @@ runs: key: ${{ runner.os }}-flutter-pub-${{ hashFiles('**/pubspec.lock') }} restore-keys: | ${{ runner.os }}-flutter-pub- - # Use shell: bash for potential cross-platform compatibility in complex commands - shell: bash - name: Get Flutter dependencies run: flutter pub get - # Use shell: bash for potential cross-platform compatibility in complex commands - shell: bash # Add other common setup steps if needed