Skip to content

Commit

Permalink
Bump actions/cache from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v3...v4)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored May 28, 2024
1 parent 98097ad commit 370cae6
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
key: "${{ env.cacheVersion }}"

- name: "Cache PHP extensions"
uses: "actions/cache@v3"
uses: "actions/cache@v4"
with:
path: "${{ steps.extcache.outputs.dir }}"
key: "${{ steps.extcache.outputs.key }}"
Expand All @@ -62,7 +62,7 @@ jobs:
run: 'echo "::set-output name=dir::$(composer config cache-files-dir)"'

- name: "Cache PHP dependencies"
uses: "actions/cache@v3"
uses: "actions/cache@v4"
with:
path: "${{ steps.composercache.outputs.dir }}"
key: "${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}"
Expand All @@ -83,7 +83,7 @@ jobs:
node-version: "${{ matrix.node-versions }}"

- name: "Cache Node.js dependencies"
uses: "actions/cache@v3"
uses: "actions/cache@v4"
with:
path: node_modules
key: "${{ runner.os }}-npm-${{ hashFiles('**/package.json') }}"
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
key: "${{ env.cacheVersion }}"

- name: "Cache PHP extensions"
uses: "actions/cache@v3"
uses: "actions/cache@v4"
with:
path: "${{ steps.extcache.outputs.dir }}"
key: "${{ steps.extcache.outputs.key }}"
Expand All @@ -139,7 +139,7 @@ jobs:
run: 'echo "::set-output name=dir::$(composer config cache-files-dir)"'

- name: "Cache PHP dependencies"
uses: "actions/cache@v3"
uses: "actions/cache@v4"
with:
path: "${{ steps.composercache.outputs.dir }}"
key: "${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}"
Expand All @@ -157,7 +157,7 @@ jobs:
node-version: "${{ matrix.node-versions }}"

- name: "Cache Node.js dependencies"
uses: "actions/cache@v3"
uses: "actions/cache@v4"
with:
path: node_modules
key: "${{ runner.os }}-npm-${{ hashFiles('**/package.json') }}"
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
key: "${{ env.cacheVersion }}"

- name: "Cache PHP extensions"
uses: "actions/cache@v3"
uses: "actions/cache@v4"
with:
path: "${{ steps.extcache.outputs.dir }}"
key: "${{ steps.extcache.outputs.key }}"
Expand All @@ -214,7 +214,7 @@ jobs:
run: 'echo "::set-output name=dir::$(composer config cache-files-dir)"'

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

0 comments on commit 370cae6

Please sign in to comment.