Skip to content

Commit

Permalink
Update GitHub Actions cache action to v4
Browse files Browse the repository at this point in the history
Upgraded the caching action from v3 to v4 in the CI workflow configuration. This change ensures compatibility with the latest features and fixes provided by the actions/cache repository.
  • Loading branch information
koriym committed Nov 20, 2024
1 parent 4793188 commit 855f1b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

- name: Cache dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
Expand Down

0 comments on commit 855f1b1

Please sign in to comment.