From 8ebb636646ecd59af7e71bfe45b28394ac01bf22 Mon Sep 17 00:00:00 2001 From: Jamie Schouten Date: Sat, 14 Sep 2024 16:37:27 +0000 Subject: [PATCH] Update action.yml --- action.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 24da43a..5c2526a 100644 --- a/action.yml +++ b/action.yml @@ -2,6 +2,10 @@ name: Setup composer description: Install and cache composer dependencies author: Jamie Schouten inputs: + args: + description: 'install arguments' + required: false + default: '--verbose --prefer-dist --no-progress --no-interaction --no-dev --optimize-autoloader --ignore-platform-reqs' file: description: 'file to hash for cache key' required: false @@ -29,4 +33,4 @@ runs: ${{ runner.os }}-composer- - name: Install dependencies - run: composer install + run: composer install ${{ inputs.args }}