I already config to install 1.10.0 but when it running build it install 1.9.1, How to force to install pod 1.10.0?
logs.
Configs:
- SourceRootPath: /Users/vagrant/git
- PodfilePath:
- IsUpdateCocoapods: false
- InstallCocoapodsVersion:
- Verbose: true
- IsCacheDisabled: false
Searching for Podfile
Found Podfile: /Users/vagrant/git/Podfile
Determining required cocoapods version
Searching for Podfile.lock
No Podfile.lock found at: /Users/vagrant/git/Podfile.lock
Make sure it's committed into your repository!
Searching for gem lockfile with cocoapods gem
No gem lockfile with cocoapods gem found at:
Using system installed CocoaPods version
Check selected Ruby is installed
Ruby 2.6.5 is installed
Installing cocoapods
Using system installed cocoapods
cocoapods version:
$ pod "--version"
1.9.1
BITRISE.YML
---
format_version: '8'
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
project_type: ios
app:
envs:
- FASTLANE_XCODE_LIST_TIMEOUT: '120'
- opts:
is_expand: false
FASTLANE_WORK_DIR: "."
- opts:
is_expand: false
FASTLANE_LANE: test
trigger_map:
- push_branch: "*"
workflow: primary
- pull_request_source_branch: "*"
workflow: primary
workflows:
primary:
steps:
- activate-ssh-key@4.0.3:
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}'
- git-clone@4.0.17: {}
- authenticate-with-github-oauth@0.9.2:
inputs:
- access_token: "$accesstoken"
- username: "$user"
- script@1.1.5:
title: Do anything with Script step
inputs:
- content: |-
#!/usr/bin/env bash
# fail if any commands fails
set -e
# debug log
set -x
# write your script here
- certificate-and-profile-installer@1.10.1: {}
- cocoapods-install@1.11: {}
- fastlane@2.7:
inputs:
- lane: "$FASTLANE_LANE"
- work_dir: "$FASTLANE_WORK_DIR"