Skip to content

Commit 0095f44

Browse files
authored
Merge pull request #185 from cashapp/krueger/ruby-bundler-version
Update ruby and bundler versions
2 parents 22150a3 + 5890b18 commit 0095f44

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

.github/workflows/ci.yml

+9
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
steps:
1818
- name: Checkout Repo
1919
uses: actions/checkout@v3
20+
- uses: ruby/setup-ruby@v1
21+
with:
22+
ruby-version: '3.2.2'
2023
- name: Bundle Install
2124
run: bundle install --gemfile=Example/Gemfile
2225
- name: Prepare Simulator Runtimes
@@ -41,6 +44,9 @@ jobs:
4144
steps:
4245
- name: Checkout Repo
4346
uses: actions/checkout@v3
47+
- uses: ruby/setup-ruby@v1
48+
with:
49+
ruby-version: '3.2.2'
4450
- name: Bundle Install
4551
run: bundle install --gemfile=Example/Gemfile
4652
- name: Select Xcode Version (12.5.1)
@@ -64,6 +70,9 @@ jobs:
6470
steps:
6571
- name: Checkout Repo
6672
uses: actions/checkout@v3
73+
- uses: ruby/setup-ruby@v1
74+
with:
75+
ruby-version: '3.2.2'
6776
- name: Bundle Install
6877
run: bundle install --gemfile=Example/Gemfile
6978
- name: Pod Install

Example/Gemfile

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
ruby '3.2.2'
2+
source 'https://rubygems.org'
3+
14
def cocoapods_gem(name, gem_name = name.downcase, **opts)
25
gem gem_name, git: "https://github.com/CocoaPods/#{name}", **opts
36
end

Example/Gemfile.lock

+4-1
Original file line numberDiff line numberDiff line change
@@ -121,5 +121,8 @@ DEPENDENCIES
121121
nanaimo!
122122
xcodeproj!
123123

124+
RUBY VERSION
125+
ruby 3.2.2p53
126+
124127
BUNDLED WITH
125-
1.17.3
128+
2.4.22

0 commit comments

Comments
 (0)