From 6f7cadf96c7b55a0df21b51730e4b53ad13a7545 Mon Sep 17 00:00:00 2001 From: Ondrej Mirtes Date: Mon, 1 Mar 2021 14:16:18 +0100 Subject: [PATCH] Do not cache dependencies --- .github/workflows/build.yml | 7 ------- .github/workflows/phar.yml | 7 ------- 2 files changed, 14 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9dfb06e325..e7a6982f91 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -322,13 +322,6 @@ jobs: coverage: "none" php-version: "7.3" - - name: "Cache dependencies" - uses: "actions/cache@v2" - with: - path: "~/.composer/cache" - key: "php-${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }}" - restore-keys: "php-${{ matrix.php-version }}-composer-" - - name: "Install dependencies" run: "composer install --no-dev --no-interaction --no-progress --no-suggest" diff --git a/.github/workflows/phar.yml b/.github/workflows/phar.yml index c138992a78..b67d68bfb2 100644 --- a/.github/workflows/phar.yml +++ b/.github/workflows/phar.yml @@ -26,13 +26,6 @@ jobs: coverage: "none" php-version: "7.4" - - name: "Cache dependencies" - uses: "actions/cache@v2" - with: - path: "~/.composer/cache" - key: "php-7.4-composer-${{ hashFiles('**/composer.json') }}" - restore-keys: "php-7.4-composer-" - - name: "Install dependencies" run: "composer install --no-interaction --no-progress --no-suggest"