Do not cache dependencies installed with Composer · sebastianbergmann/php-file-iterator@7755801 (original) (raw)

Original file line number Diff line number Diff line change
@@ -75,13 +75,6 @@ jobs:
75 75 php-version: "${{ matrix.php-version }}"
76 76 coverage: "pcov"
77 77
78 - - name: "Cache dependencies installed with Composer"
79 -uses: "actions/cache@v2"
80 -with:
81 -path: "~/.composer/cache"
82 -key: "php${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.json') }}"
83 -restore-keys: "php${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-"
84 -
85 78 - name: "Install dependencies with Composer"
86 79 run: "./tools/composer update --no-ansi --no-interaction --no-progress"
87 80