From 330ca7d1bd662fbaf64ad4b9e7c9ea62eaf79aee Mon Sep 17 00:00:00 2001 From: Matthew Peveler Date: Tue, 16 Jun 2020 18:44:47 -0400 Subject: [PATCH] Update php cache key to use php in its name Signed-off-by: Matthew Peveler --- ci/php.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/php.yml b/ci/php.yml index ebb41ae..839187e 100644 --- a/ci/php.yml +++ b/ci/php.yml @@ -22,9 +22,9 @@ jobs: uses: actions/cache@v2 with: path: vendor - key: ${{ runner.os }}-node-${{ hashFiles('**/composer.lock') }} + key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} restore-keys: | - ${{ runner.os }}-node- + ${{ runner.os }}-php- - name: Install dependencies if: steps.composer-cache.outputs.cache-hit != 'true'