Skip to content

Commit

Permalink
Merge pull request #91 from creasico/dependabot/github_actions/action…
Browse files Browse the repository at this point in the history
…s/cache-4

chore(deps): bump actions/cache from 3 to 4
  • Loading branch information
creasi authored Feb 11, 2024
2 parents 6e2bbd9 + fd555a4 commit 5ef207f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Cache Composer dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ needs.prepare.outputs.composer-cache }}
key: php-8.1-composer-${{ hashFiles('**/composer.lock') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Prepare Composer Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ needs.prepare.outputs.composer-cache }}
key: php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.lock') }}
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
path: public

- name: Prepare Composer Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ needs.prepare.outputs.composer-cache }}
key: php-8.1-composer-${{ hashFiles('**/composer.lock') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
echo "composer-cache=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Prepare Composer Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.prepare.outputs.composer-cache }}
key: php-8.1-composer-${{ hashFiles('**/composer.lock') }}
Expand Down

0 comments on commit 5ef207f

Please sign in to comment.