Skip to content

Commit

Permalink
Merge pull request #87 from PrestaShop/fix-actions-cache-version
Browse files Browse the repository at this point in the history
Updated actions/cache version in github workflow
  • Loading branch information
jolelievre authored Mar 3, 2025
2 parents 8f14706 + f9ea983 commit d932bac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
uses: actions/[email protected]

- name: Cache dependencies
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: vendor
key: php-${{ hashFiles('composer.lock') }}
Expand Down Expand Up @@ -70,14 +70,14 @@ jobs:

# Add vendor folder in cache to make next builds faster
- name: Cache vendor folder
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: vendor
key: php-${{ hashFiles('composer.lock') }}

# Add composer local folder in cache to make next builds faster
- name: Cache composer folder
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ~/.composer/cache
key: php-composer-cache
Expand Down

0 comments on commit d932bac

Please sign in to comment.