Skip to content

Commit 9bbd6f2

Browse files
Update Fastlane to 2.215.0 (#88)
* Update Gemfile.lock for Fastlane to 2.215.0 Among other improvements, this should fix the WWDR issue. * build_loop.yml: Install bundle, bundle exec - bundle install - bundle exec fastlane build_loop - bundle exec fastlane release * Update Gemfile.lock Commands used to install bundler and update dependencies: sudo gem pristine ffi sudo gem install bundler sudo bundle install sudo bundle update fastlane * Don't install bundler, which comes with Ruby 2.7+ * Install dependencies and use bundler to exec fastlane across workflows --------- Co-authored-by: Billy Booth <[email protected]>
1 parent a9e4404 commit 9bbd6f2

File tree

5 files changed

+96
-77
lines changed

5 files changed

+96
-77
lines changed

.github/workflows/add_identifiers.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,18 @@ jobs:
2121
# Checks-out the repo
2222
- name: Checkout Repo
2323
uses: actions/checkout@v3
24-
24+
2525
# Patch Fastlane Match to not print tables
2626
- name: Patch Match Tables
2727
run: find /usr/local/lib/ruby/gems -name table_printer.rb | xargs sed -i "" "/puts(Terminal::Table.new(params))/d"
28-
28+
29+
# Install project dependencies
30+
- name: Install Project Dependencies
31+
run: bundle install
32+
2933
# Create or update identifiers for app
3034
- name: Fastlane Provision
31-
run: fastlane identifiers
35+
run: bundle exec fastlane identifiers
3236
env:
3337
TEAMID: ${{ secrets.TEAMID }}
3438
GH_PAT: ${{ secrets.GH_PAT }}

.github/workflows/build_loop.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,9 +251,13 @@ jobs:
251251
- name: Patch Match Tables
252252
run: find /usr/local/lib/ruby/gems -name table_printer.rb | xargs sed -i "" "/puts(Terminal::Table.new(params))/d"
253253

254+
# Install project dependencies
255+
- name: Install project dependencies
256+
run: bundle install
257+
254258
# Build signed Loop IPA file
255259
- name: Fastlane Build & Archive
256-
run: fastlane build_loop
260+
run: bundle exec fastlane build_loop
257261
env:
258262
TEAMID: ${{ secrets.TEAMID }}
259263
GH_PAT: ${{ secrets.GH_PAT }}
@@ -264,7 +268,7 @@ jobs:
264268

265269
# Upload to TestFlight
266270
- name: Fastlane upload to TestFlight
267-
run: fastlane release
271+
run: bundle exec fastlane release
268272
env:
269273
TEAMID: ${{ secrets.TEAMID }}
270274
GH_PAT: ${{ secrets.GH_PAT }}

.github/workflows/create_certs.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,18 @@ jobs:
2121
# Checks-out the repo
2222
- name: Checkout Repo
2323
uses: actions/checkout@v3
24-
24+
2525
# Patch Fastlane Match to not print tables
2626
- name: Patch Match Tables
2727
run: find /usr/local/lib/ruby/gems -name table_printer.rb | xargs sed -i "" "/puts(Terminal::Table.new(params))/d"
28-
28+
29+
# Install project dependencies
30+
- name: Install Project Dependencies
31+
run: bundle install
32+
2933
# Create or update certificates for app
3034
- name: Create Certificates
31-
run: fastlane certs
35+
run: bundle exec fastlane certs
3236
env:
3337
TEAMID: ${{ secrets.TEAMID }}
3438
GH_PAT: ${{ secrets.GH_PAT }}

.github/workflows/validate_secrets.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,10 @@ jobs:
124124
steps:
125125
- name: Checkout Repo
126126
uses: actions/checkout@v3
127-
127+
128+
- name: Install Project Dependencies
129+
run: bundle install
130+
128131
- name: Validate Fastlane Secrets
129132
run: |
130133
# Validate Fastlane Secrets
@@ -171,7 +174,7 @@ jobs:
171174
elif ! echo "$FASTLANE_KEY" | openssl pkcs8 -nocrypt >/dev/null; then
172175
failed=true
173176
echo "::error::The FASTLANE_KEY secret is set but invalid. Verify that you copied it correctly from the API Key file (*.p8) you downloaded and try again."
174-
elif ! fastlane validate_secrets 2>&1 | tee fastlane.log; then
177+
elif ! bundle exec fastlane validate_secrets 2>&1 | tee fastlane.log; then
175178
if grep -q "bad decrypt" fastlane.log; then
176179
failed=true
177180
echo "::error::Unable to decrypt the Match-Secrets repository using the MATCH_PASSWORD secret. Verify that it is set correctly and try again."

Gemfile.lock

Lines changed: 71 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,53 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
CFPropertyList (3.0.4)
4+
CFPropertyList (3.0.6)
55
rexml
6-
addressable (2.8.0)
7-
public_suffix (>= 2.0.2, < 5.0)
6+
addressable (2.8.5)
7+
public_suffix (>= 2.0.2, < 6.0)
88
artifactory (3.0.15)
99
atomos (0.1.3)
1010
aws-eventstream (1.2.0)
11-
aws-partitions (1.516.0)
12-
aws-sdk-core (3.121.2)
11+
aws-partitions (1.824.0)
12+
aws-sdk-core (3.181.1)
1313
aws-eventstream (~> 1, >= 1.0.2)
14-
aws-partitions (~> 1, >= 1.239.0)
14+
aws-partitions (~> 1, >= 1.651.0)
15+
aws-sigv4 (~> 1.5)
16+
jmespath (~> 1, >= 1.6.1)
17+
aws-sdk-kms (1.71.0)
18+
aws-sdk-core (~> 3, >= 3.177.0)
1519
aws-sigv4 (~> 1.1)
16-
jmespath (~> 1.0)
17-
aws-sdk-kms (1.50.0)
18-
aws-sdk-core (~> 3, >= 3.121.2)
19-
aws-sigv4 (~> 1.1)
20-
aws-sdk-s3 (1.104.0)
21-
aws-sdk-core (~> 3, >= 3.121.2)
20+
aws-sdk-s3 (1.134.0)
21+
aws-sdk-core (~> 3, >= 3.181.0)
2222
aws-sdk-kms (~> 1)
23-
aws-sigv4 (~> 1.4)
24-
aws-sigv4 (1.4.0)
23+
aws-sigv4 (~> 1.6)
24+
aws-sigv4 (1.6.0)
2525
aws-eventstream (~> 1, >= 1.0.2)
2626
babosa (1.0.4)
27-
claide (1.0.3)
27+
claide (1.1.0)
2828
colored (1.2)
2929
colored2 (3.1.2)
3030
commander (4.6.0)
3131
highline (~> 2.0.0)
3232
declarative (0.0.20)
33-
digest-crc (0.6.4)
33+
digest-crc (0.6.5)
3434
rake (>= 12.0.0, < 14.0.0)
3535
domain_name (0.5.20190701)
3636
unf (>= 0.0.5, < 1.0.0)
37-
dotenv (2.7.6)
37+
dotenv (2.8.1)
3838
emoji_regex (3.2.3)
39-
excon (0.87.0)
40-
faraday (1.8.0)
39+
excon (0.103.0)
40+
faraday (1.10.3)
4141
faraday-em_http (~> 1.0)
4242
faraday-em_synchrony (~> 1.0)
4343
faraday-excon (~> 1.1)
44-
faraday-httpclient (~> 1.0.1)
44+
faraday-httpclient (~> 1.0)
45+
faraday-multipart (~> 1.0)
4546
faraday-net_http (~> 1.0)
46-
faraday-net_http_persistent (~> 1.1)
47+
faraday-net_http_persistent (~> 1.0)
4748
faraday-patron (~> 1.0)
4849
faraday-rack (~> 1.0)
49-
multipart-post (>= 1.2, < 3)
50+
faraday-retry (~> 1.0)
5051
ruby2_keywords (>= 0.0.4)
5152
faraday-cookie_jar (0.0.7)
5253
faraday (>= 0.8.0)
@@ -55,14 +56,17 @@ GEM
5556
faraday-em_synchrony (1.0.0)
5657
faraday-excon (1.1.0)
5758
faraday-httpclient (1.0.1)
59+
faraday-multipart (1.0.4)
60+
multipart-post (~> 2)
5861
faraday-net_http (1.0.1)
5962
faraday-net_http_persistent (1.2.0)
6063
faraday-patron (1.0.0)
6164
faraday-rack (1.0.0)
65+
faraday-retry (1.0.3)
6266
faraday_middleware (1.2.0)
6367
faraday (~> 1.0)
64-
fastimage (2.2.5)
65-
fastlane (2.196.0)
68+
fastimage (2.2.7)
69+
fastlane (2.215.0)
6670
CFPropertyList (>= 2.3, < 4.0.0)
6771
addressable (>= 2.8, < 3.0.0)
6872
artifactory (~> 3.0)
@@ -83,28 +87,29 @@ GEM
8387
google-apis-playcustomapp_v1 (~> 0.1)
8488
google-cloud-storage (~> 1.31)
8589
highline (~> 2.0)
90+
http-cookie (~> 1.0.5)
8691
json (< 3.0.0)
8792
jwt (>= 2.1.0, < 3)
8893
mini_magick (>= 4.9.4, < 5.0.0)
89-
multipart-post (~> 2.0.0)
94+
multipart-post (>= 2.0.0, < 3.0.0)
9095
naturally (~> 2.2)
9196
optparse (~> 0.1.1)
9297
plist (>= 3.1.0, < 4.0.0)
9398
rubyzip (>= 2.0.0, < 3.0.0)
9499
security (= 0.1.3)
95100
simctl (~> 1.6.3)
96101
terminal-notifier (>= 2.0.0, < 3.0.0)
97-
terminal-table (>= 1.4.5, < 2.0.0)
102+
terminal-table (~> 3)
98103
tty-screen (>= 0.6.3, < 1.0.0)
99104
tty-spinner (>= 0.8.0, < 1.0.0)
100105
word_wrap (~> 1.0.0)
101106
xcodeproj (>= 1.13.0, < 2.0.0)
102107
xcpretty (~> 0.3.0)
103108
xcpretty-travis-formatter (>= 0.0.3)
104109
gh_inspector (1.1.3)
105-
google-apis-androidpublisher_v3 (0.12.0)
106-
google-apis-core (>= 0.4, < 2.a)
107-
google-apis-core (0.4.1)
110+
google-apis-androidpublisher_v3 (0.49.0)
111+
google-apis-core (>= 0.11.0, < 2.a)
112+
google-apis-core (0.11.1)
108113
addressable (~> 2.5, >= 2.5.1)
109114
googleauth (>= 0.16.2, < 2.a)
110115
httpclient (>= 2.8.1, < 3.a)
@@ -113,86 +118,84 @@ GEM
113118
retriable (>= 2.0, < 4.a)
114119
rexml
115120
webrick
116-
google-apis-iamcredentials_v1 (0.7.0)
117-
google-apis-core (>= 0.4, < 2.a)
118-
google-apis-playcustomapp_v1 (0.5.0)
119-
google-apis-core (>= 0.4, < 2.a)
120-
google-apis-storage_v1 (0.8.0)
121-
google-apis-core (>= 0.4, < 2.a)
121+
google-apis-iamcredentials_v1 (0.17.0)
122+
google-apis-core (>= 0.11.0, < 2.a)
123+
google-apis-playcustomapp_v1 (0.13.0)
124+
google-apis-core (>= 0.11.0, < 2.a)
125+
google-apis-storage_v1 (0.19.0)
126+
google-apis-core (>= 0.9.0, < 2.a)
122127
google-cloud-core (1.6.0)
123128
google-cloud-env (~> 1.0)
124129
google-cloud-errors (~> 1.0)
125-
google-cloud-env (1.5.0)
126-
faraday (>= 0.17.3, < 2.0)
127-
google-cloud-errors (1.2.0)
128-
google-cloud-storage (1.34.1)
129-
addressable (~> 2.5)
130+
google-cloud-env (1.6.0)
131+
faraday (>= 0.17.3, < 3.0)
132+
google-cloud-errors (1.3.1)
133+
google-cloud-storage (1.44.0)
134+
addressable (~> 2.8)
130135
digest-crc (~> 0.4)
131136
google-apis-iamcredentials_v1 (~> 0.1)
132-
google-apis-storage_v1 (~> 0.1)
137+
google-apis-storage_v1 (~> 0.19.0)
133138
google-cloud-core (~> 1.6)
134139
googleauth (>= 0.16.2, < 2.a)
135140
mini_mime (~> 1.0)
136-
googleauth (1.0.0)
137-
faraday (>= 0.17.3, < 2.0)
141+
googleauth (1.8.0)
142+
faraday (>= 0.17.3, < 3.a)
138143
jwt (>= 1.4, < 3.0)
139-
memoist (~> 0.16)
140144
multi_json (~> 1.11)
141145
os (>= 0.9, < 2.0)
142146
signet (>= 0.16, < 2.a)
143147
highline (2.0.3)
144-
http-cookie (1.0.4)
148+
http-cookie (1.0.5)
145149
domain_name (~> 0.5)
146150
httpclient (2.8.3)
147151
jmespath (1.6.2)
148-
json (2.6.0)
149-
jwt (2.3.0)
150-
memoist (0.16.2)
151-
mini_magick (4.11.0)
152-
mini_mime (1.1.2)
152+
json (2.6.3)
153+
jwt (2.7.1)
154+
mini_magick (4.12.0)
155+
mini_mime (1.1.5)
153156
multi_json (1.15.0)
154-
multipart-post (2.0.0)
157+
multipart-post (2.3.0)
155158
nanaimo (0.3.0)
156159
naturally (2.2.1)
157160
optparse (0.1.1)
158-
os (1.1.1)
159-
plist (3.6.0)
160-
public_suffix (4.0.6)
161+
os (1.1.4)
162+
plist (3.7.0)
163+
public_suffix (5.0.3)
161164
rake (13.0.6)
162-
representable (3.1.1)
165+
representable (3.2.0)
163166
declarative (< 0.1.0)
164167
trailblazer-option (>= 0.1.1, < 0.2.0)
165168
uber (< 0.2.0)
166169
retriable (3.1.2)
167-
rexml (3.2.5)
170+
rexml (3.2.6)
168171
rouge (2.0.7)
169172
ruby2_keywords (0.0.5)
170173
rubyzip (2.3.2)
171174
security (0.1.3)
172-
signet (0.16.0)
175+
signet (0.18.0)
173176
addressable (~> 2.8)
174-
faraday (>= 0.17.3, < 2.0)
177+
faraday (>= 0.17.5, < 3.a)
175178
jwt (>= 1.5, < 3.0)
176179
multi_json (~> 1.10)
177-
simctl (1.6.8)
180+
simctl (1.6.10)
178181
CFPropertyList
179182
naturally
180183
terminal-notifier (2.0.0)
181-
terminal-table (1.8.0)
182-
unicode-display_width (~> 1.1, >= 1.1.1)
183-
trailblazer-option (0.1.1)
184+
terminal-table (3.0.2)
185+
unicode-display_width (>= 1.1.1, < 3)
186+
trailblazer-option (0.1.2)
184187
tty-cursor (0.7.1)
185188
tty-screen (0.8.1)
186189
tty-spinner (0.9.3)
187190
tty-cursor (~> 0.7)
188191
uber (0.1.0)
189192
unf (0.1.4)
190193
unf_ext
191-
unf_ext (0.0.8)
192-
unicode-display_width (1.8.0)
193-
webrick (1.7.0)
194+
unf_ext (0.0.8.2)
195+
unicode-display_width (2.4.2)
196+
webrick (1.8.1)
194197
word_wrap (1.0.0)
195-
xcodeproj (1.21.0)
198+
xcodeproj (1.22.0)
196199
CFPropertyList (>= 2.3.3, < 4.0)
197200
atomos (~> 0.1.3)
198201
claide (>= 1.0.2, < 2.0)
@@ -206,10 +209,11 @@ GEM
206209

207210
PLATFORMS
208211
arm64-darwin-21
212+
arm64-darwin-22
209213
x86_64-darwin-19
210214

211215
DEPENDENCIES
212216
fastlane
213217

214218
BUNDLED WITH
215-
2.3.26
219+
2.4.19

0 commit comments

Comments
 (0)