From 591ea333ea8ac63e0b9fde586567cd7afcad51c1 Mon Sep 17 00:00:00 2001 From: David Goodwin Date: Mon, 2 Mar 2020 13:47:36 +0000 Subject: [PATCH] drop caching; we as we do not add composer.lock to git anyway --- .github/workflows/php.yml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index ef4a28fb..88aa9082 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -19,17 +19,6 @@ jobs: - name: touch config.local.php run: touch config.local.php && php -v - - name: Get Composer Cache Directory - id: composer-cache - run: | - echo "::set-output name=dir::$(composer config cache-files-dir)" - - uses: actions/cache@v1 - with: - path: ${{ steps.composer-cache.outputs.dir }} - key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }} - restore-keys: | - ${{ runner.os }}-composer- - - name: Install dependencies run: composer install --prefer-dist --no-progress --no-suggest