Skip to content

Commit

Permalink
Fix caching composer-deps
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Mar 20, 2024
1 parent 9fc240e commit 7b4e08b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
- name: Cache composer dependencies
uses: actions/cache@v4
with:
path: $COMPOSER_CACHE
path: ${{ env.COMPOSER_CACHE }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-

Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
- name: Cache composer dependencies
uses: actions/cache@v4
with:
path: $COMPOSER_CACHE
path: ${{ env.COMPOSER_CACHE }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-

Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
- name: Cache composer dependencies
uses: actions/cache@v4
with:
path: $COMPOSER_CACHE
path: ${{ env.COMPOSER_CACHE }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-

Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:
- name: Cache composer dependencies
uses: actions/cache@v4
with:
path: $COMPOSER_CACHE
path: ${{ env.COMPOSER_CACHE }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-

Expand Down

0 comments on commit 7b4e08b

Please sign in to comment.