From 576b9ec05b82038887b32e6184b8657bc04d384a Mon Sep 17 00:00:00 2001 From: Jamie Schouten Date: Sat, 14 Sep 2024 11:13:23 +0000 Subject: [PATCH] Update action.yml --- action.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/action.yml b/action.yml index 6621501..1a27770 100644 --- a/action.yml +++ b/action.yml @@ -1,11 +1,6 @@ name: Setup composer description: Install and cache composer dependencies author: Jamie Schouten -inputs: - file: - description: 'file to hash for cache key' - required: false - default: '**/composer.lock' runs: using: "composite" @@ -24,7 +19,7 @@ runs: - uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} - key: ${{ runner.os }}-composer-${{ hashFiles(inputs.file) }} + key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} restore-keys: | ${{ runner.os }}-composer-