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

Commit

Permalink
Update minikube version
Browse files Browse the repository at this point in the history
  • Loading branch information
lulf committed Apr 18, 2020
1 parent cecee4d commit 40f4477
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ inputs:
minikube-version:
description: 'Minikube version to install'
required: false
default: '1.4.0'
default: '1.9.2'
k8s-version:
description: 'Kubernetes version to install'
required: false
default: '1.15.0'
default: '1.18.0'
outputs:
launcher:
description: 'Command to execute to launch minikube'
runs:
using: 'node12'
main: 'src/index.js'
main: 'src/index.js'
3 changes: 2 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,11 @@ function start_minikube() {
}

try {
H
if (install_minikube() || run_registry() || start_minikube() || wait_for_minikube()) {
core.setFailed(error.message);
}

} catch (error) {
core.setFailed(error.message);
}
}

0 comments on commit 40f4477

Please sign in to comment.