Skip to content
This repository was archived by the owner on Dec 4, 2023. It is now read-only.

Commit 40f4477

Browse files
committed
Update minikube version
1 parent cecee4d commit 40f4477

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ inputs:
88
minikube-version:
99
description: 'Minikube version to install'
1010
required: false
11-
default: '1.4.0'
11+
default: '1.9.2'
1212
k8s-version:
1313
description: 'Kubernetes version to install'
1414
required: false
15-
default: '1.15.0'
15+
default: '1.18.0'
1616
outputs:
1717
launcher:
1818
description: 'Command to execute to launch minikube'
1919
runs:
2020
using: 'node12'
21-
main: 'src/index.js'
21+
main: 'src/index.js'

src/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,11 @@ function start_minikube() {
6868
}
6969

7070
try {
71+
H
7172
if (install_minikube() || run_registry() || start_minikube() || wait_for_minikube()) {
7273
core.setFailed(error.message);
7374
}
7475

7576
} catch (error) {
7677
core.setFailed(error.message);
77-
}
78+
}

0 commit comments

Comments
 (0)