Skip to content

Commit 9692aea

Browse files
committed
Merge remote-tracking branch 'origin/master' into radjabov
2 parents 2375f99 + 19dc423 commit 9692aea

File tree

6 files changed

+324
-321
lines changed

6 files changed

+324
-321
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ jobs:
4343
- name: Run tests
4444
run: bundle exec rake
4545
- name: Report code coverage
46-
if: "${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '3.0' }}"
46+
if: ${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '3.1' }}
4747
continue-on-error: true
48-
uses: paambaati/codeclimate-action@v6
48+
uses: paambaati/codeclimate-action@v8

.whitesource

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
{
22
"settingsInheritedFrom": "ManageIQ/whitesource-config@master"
33
}
4-

.yarn/releases/yarn-4.2.2.cjs renamed to .yarn/releases/yarn-4.3.1.cjs

Lines changed: 313 additions & 313 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ enableGlobalCache: true
44

55
nodeLinker: node-modules
66

7-
yarnPath: .yarn/releases/yarn-4.2.2.cjs
7+
yarnPath: .yarn/releases/yarn-4.3.1.cjs

app/models/manageiq/providers/ibm_power_vc/cloud_manager/vm.rb

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@
22

33
class ManageIQ::Providers::IbmPowerVc::CloudManager::Vm < ManageIQ::Providers::Openstack::CloudManager::Vm
44
supports :html5_console do
5-
return _("VM Console not supported because VM is not powered on") unless current_state == "on"
6-
return _("VM Console not supported because VM is orphaned") if orphaned?
7-
return _("VM Console not supported because VM is archived") if archived?
5+
if current_state != "on"
6+
_("VM Console not supported because VM is not powered on")
7+
elsif orphaned?
8+
_("VM Console not supported because VM is orphaned")
9+
elsif archived?
10+
_("VM Console not supported because VM is archived")
11+
end
812
end
913
supports :launch_html5_console
1014

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
"npm": ">= 6.0.0",
1919
"yarn": ">= 0.20.1"
2020
},
21-
"packageManager": "yarn@4.2.2"
21+
"packageManager": "yarn@4.3.1"
2222
}

0 commit comments

Comments
 (0)