diff --git a/plugins/fastlane-plugin-ios_cd/lib/fastlane/plugin/ios_cd/helper/ios_cd_helper.rb b/plugins/fastlane-plugin-ios_cd/lib/fastlane/plugin/ios_cd/helper/ios_cd_helper.rb index a0bf867..308892f 100644 --- a/plugins/fastlane-plugin-ios_cd/lib/fastlane/plugin/ios_cd/helper/ios_cd_helper.rb +++ b/plugins/fastlane-plugin-ios_cd/lib/fastlane/plugin/ios_cd/helper/ios_cd_helper.rb @@ -8,7 +8,7 @@ module Fastlane # Define method to delete temporary keychain def self.delete_temp_keychain(name) if File.exist?(File.expand_path("~/Library/Keychains/#{name}-db")) - other_action.deelete_keychain.run( + Actions::DeleteKeychainAction.run( name: name ) end @@ -16,7 +16,7 @@ module Fastlane # Define method to create temporary keychain def self.create_temp_keychain(name, password) - other_actions.create_keychain_action.run( + Actions::CreateKeychainAction.run( name: name, password: password, unlock: false,