From 3c63aa51be2abfe297c6adcfde319958b7a27a49 Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Sun, 9 Nov 2025 18:31:25 +0100 Subject: [PATCH] Update Ruby version to 3.1 in GitHub Actions workflows MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bundler 2.6.3 requires Ruby >= 3.1.0, but workflows were using Ruby 3.0.7, causing build failures. Updated both release and bump-build workflows to use Ruby 3.1. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/bump-build.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/bump-build.yml b/.github/workflows/bump-build.yml index 4726e3a2..26408af7 100644 --- a/.github/workflows/bump-build.yml +++ b/.github/workflows/bump-build.yml @@ -17,7 +17,7 @@ jobs: git config --local user.name "github-actions[bot]" - uses: ruby/setup-ruby@v1 with: - ruby-version: '3.0' + ruby-version: '3.1' bundler-cache: true - uses: maierj/fastlane-action@v3.0.0 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0e59bb65..e5536daf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,7 +32,7 @@ jobs: - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: - ruby-version: '3.0' + ruby-version: '3.1' bundler-cache: true cache-version: 1 - name: Replace signing certificate to AppStore @@ -57,7 +57,7 @@ jobs: - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: - ruby-version: '3.0' + ruby-version: '3.1' bundler-cache: true cache-version: 1 - name: Replace signing certificate to Direct with Developer ID