From 52b82a3e33bf14a26f1b46591ffb006bb4151cf3 Mon Sep 17 00:00:00 2001 From: Kengo TODA Date: Fri, 28 Aug 2020 19:26:53 +0800 Subject: [PATCH] feat: make `version` input required --- action.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 030981a..d9298e7 100644 --- a/action.yml +++ b/action.yml @@ -3,9 +3,8 @@ description: 'Automate download and set up process for docker-compose command' author: 'Kengo TODA ' inputs: version: - required: false + required: true description: 'the version of docker-compose command' - default: '1.26.2' runs: using: 'node12' main: 'dist/index.js'