From af0bb51f010787b1799da09e28b0e942200bf238 Mon Sep 17 00:00:00 2001 From: Geoffroy Bonneville <24917789+wismna@users.noreply.github.com> Date: Sun, 9 Nov 2025 15:33:16 -0500 Subject: [PATCH] Bump up Ruby version Use Bundle in pipeline --- .github/workflows/android.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/android.yaml b/.github/workflows/android.yaml index 7458eb5..975a1af 100644 --- a/.github/workflows/android.yaml +++ b/.github/workflows/android.yaml @@ -37,10 +37,10 @@ jobs: - name: Set up Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: 3.1 + ruby-version: 3.4 - name: Install Fastlane - run: gem install fastlane -NV + run: bundle install - name: Configure Google credentials run: echo '${{ secrets.GOOGLE_PLAY_SERVICE_ACCOUNT_JSON }}' > service-account.json @@ -48,4 +48,4 @@ jobs: - name: Run Fastlane env: SUPPLY_JSON_KEY: service-account.json - run: fastlane internal \ No newline at end of file + run: bundle exec fastlane internal \ No newline at end of file