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 30cc5e1 commit 0b6b636
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.json') }}
restore-keys: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}

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

0 comments on commit 0b6b636

Please sign in to comment.