Skip to content

Commit

Permalink
chore: Upgrade actions/cache to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
hellopablo committed Dec 17, 2024
1 parent 33b0cc7 commit a25153f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ jobs:
php-version: 8.1

- name: Cache Composer dependencies
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

- name: Cache Yarn dependencies
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
Expand Down

0 comments on commit a25153f

Please sign in to comment.