Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/android-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.4.9"
ruby-version: "4.0.3"
bundler-cache: true
Comment on lines 197 to 199

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Fastlane gem version incompatible with Ruby 4.0

The Gemfile at packages/app-core/platforms/android/Gemfile pins Fastlane to ~> 2.225 (i.e. >= 2.225, < 3.0). Ruby 4.0 support in Fastlane was only introduced in 2.231.1 (see fastlane/fastlane#29869). Any Gemfile.lock that was cached or resolved before that release (e.g. 2.226.x – 2.230.x) would fail to load under Ruby 4.0, likely causing the entire release workflow to error. The Gemfile lower bound should be raised to at least ~> 2.231.1 (or the lock file regenerated against a 4.0-compatible version) in tandem with this version bump. The same issue affects the iOS release workflow.

working-directory: packages/app/android

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/apple-store-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.4.9"
ruby-version: "4.0.3"
bundler-cache: true
working-directory: packages/app/ios

Expand Down
Loading