Skip to content

Commit 8570ba0

Browse files
committed
fix. bundler requires Ruby version >= 3.0.0
1 parent f5d5e9d commit 8570ba0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/automate-deployment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ jobs:
4141
cd $HOME/keystore
4242
echo "$JSONVIEWER_JKS_BASE64" | base64 --decode > jsonviewer_keystore.jks
4343
44-
- name: "[Fastlane] set up ruby (version 2.7.5)"
44+
- name: "[Fastlane] set up ruby (version 3.0.0)"
4545
uses: ruby/setup-ruby@v1
4646
with:
47-
ruby-version: 2.7.5
47+
ruby-version: 3.0.0
4848
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
4949

5050
- name: "[Fastlane] install bundler"

.github/workflows/test-connection.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
- name: clone repository
1616
uses: actions/checkout@v3
1717

18-
- name: "[Fastlane] set up ruby (version 2.7.5)"
18+
- name: "[Fastlane] set up ruby (version 3.0.0)"
1919
uses: ruby/setup-ruby@v1
2020
with:
21-
ruby-version: 2.7.5
21+
ruby-version: 3.0.0
2222
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
2323

2424
- name: "[Fastlane] install bundler"

0 commit comments

Comments
 (0)