Skip to content

Commit

Permalink
Do not cache the dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverklee committed Oct 27, 2024
1 parent ee2c2ab commit 34f522e
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,14 +150,6 @@ jobs:
- name: Show the Composer configuration
run: composer config --global --list

- name: Cache dependencies installed with composer
uses: actions/cache@v4
with:
path: ~/.cache/composer
key: php${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }}
restore-keys: |
php${{ matrix.php-version }}-composer-
- name: Install Composer dependencies
run: composer install --no-progress

Expand Down Expand Up @@ -206,14 +198,6 @@ jobs:
- name: Show the Composer configuration
run: composer config --global --list

- name: Cache dependencies installed with composer
uses: actions/cache@v4
with:
path: ~/.cache/composer
key: php${{ matrix.php-version }}-${{ matrix.dependencies }}-composer-${{ hashFiles('**/composer.json') }}
restore-keys: |
php${{ matrix.php-version }}-${{ matrix.dependencies }}-composer-
- name: Install Composer dependencies
run: |
if [[ "${{ matrix.dependencies }}" == 'lowest' ]]; then
Expand Down

0 comments on commit 34f522e

Please sign in to comment.