Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
Merge pull request #409 from skaut/dependabot/github_actions/actions/…
Browse files Browse the repository at this point in the history
…cache-4

Bump actions/cache from 3 to 4
  • Loading branch information
marekdedic authored Jan 17, 2024
2 parents 5f44a71 + 84b7646 commit 26fc3c5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
coverage: none

- name: "Cache Composer dependencies"
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: "~/.composer/cache"
key: composer-dependencies-${{ runner.os }}-${{ env.cache-version }}-${{ hashFiles('composer.json') }}
Expand All @@ -51,7 +51,7 @@ jobs:
composer -n install
- name: "Cache NPM dependencies"
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: "~/.npm"
key: npm-dependencies-${{ runner.os }}-${{ env.cache-version }}-${{ hashFiles('package.json') }}
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
key: php-extensions-${{ runner.os }}-${{ env.cache-version }}

- name: "Cache extensions"
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.extcache.outputs.dir }}
key: ${{ steps.extcache.outputs.key }}
Expand All @@ -106,7 +106,7 @@ jobs:
coverage: none

- name: "Cache Composer dependencies"
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: "~/.composer/cache"
key: composer-dependencies-${{ runner.os }}-${{ env.cache-version }}-${{ hashFiles('composer.json') }}
Expand All @@ -119,7 +119,7 @@ jobs:
composer -n install
- name: "Cache NPM dependencies"
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: "~/.npm"
key: npm-dependencies-${{ runner.os }}-${{ env.cache-version }}-${{ hashFiles('package.json') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
coverage: none

- name: "Cache Composer dependencies"
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: "~/.composer/cache"
key: composer-dependencies-${{ runner.os }}-${{ env.cache-version }}-${{ hashFiles('composer.json') }}
Expand All @@ -34,7 +34,7 @@ jobs:
composer -n install
- name: "Cache NPM dependencies"
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: "~/.npm"
key: npm-dependencies-${{ runner.os }}-${{ env.cache-version }}-${{ hashFiles('package.json') }}
Expand Down

0 comments on commit 26fc3c5

Please sign in to comment.