From 6b296ad36adcfd36a936aa77835378ba7770558a Mon Sep 17 00:00:00 2001 From: hamishfagg Date: Fri, 16 Jun 2023 10:52:12 +1200 Subject: [PATCH] fix timeout --- README.md | 2 +- action.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0d8e88a..5198636 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To use this action, your GitHub Actions runner needs to have the following insta | environment-slug | no | N/A | Short name of the deployment environment (dev, prod, etc). Set this if you have a `values-.yaml`. | | helm-extra-args | no | N/A | Add additional/custom helm arguments/commands. | | dry-run | no | false | Skip actual deployment and only show a diff. | -| timeout | no | 300 | Timeout time (s) for helm operations. | +| timeout | no | 300s | Timeout time for helm operations. | ## Example Usage diff --git a/action.yml b/action.yml index 98faaf2..1141beb 100644 --- a/action.yml +++ b/action.yml @@ -21,9 +21,9 @@ inputs: required: false default: false timeout: - description: "The timeout time (s) for helm operations." + description: "The timeout time for helm operations." required: false - default: 300 + default: 300s runs: using: 'composite'