Skip to content

Commit

Permalink
ci: fix dependency caching
Browse files Browse the repository at this point in the history
  • Loading branch information
angeloashmore committed Dec 14, 2023
1 parent c0177ab commit 7239eae
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,11 @@ jobs:
- name: Checkout
uses: actions/checkout@master

- name: Cache dependencies
- name: Get composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

- name: Retrieve dependencies
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
Expand Down

0 comments on commit 7239eae

Please sign in to comment.