Skip to content

Commit 311c9c5

Browse files
authored
Merge pull request #326 from lcobucci/renovate/actions-cache-4.x
Update actions/cache action to v4
2 parents 4a49d24 + d794c3d commit 311c9c5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/coding-standards.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
3737

3838
- name: "Cache dependencies"
39-
uses: "actions/cache@v3.3.2"
39+
uses: "actions/cache@v4.1.2"
4040
with:
4141
path: ${{ steps.composer-cache.outputs.dir }}
4242
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"

.github/workflows/mutation-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
3737

3838
- name: "Cache dependencies"
39-
uses: "actions/cache@v3.3.2"
39+
uses: "actions/cache@v4.1.2"
4040
with:
4141
path: ${{ steps.composer-cache.outputs.dir }}
4242
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"

.github/workflows/phpunit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
3939

4040
- name: "Cache dependencies"
41-
uses: "actions/cache@v3.3.2"
41+
uses: "actions/cache@v4.1.2"
4242
with:
4343
path: ${{ steps.composer-cache.outputs.dir }}
4444
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"

.github/workflows/static-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
3737

3838
- name: "Cache dependencies"
39-
uses: "actions/cache@v3.3.2"
39+
uses: "actions/cache@v4.1.2"
4040
with:
4141
path: ${{ steps.composer-cache.outputs.dir }}
4242
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"

0 commit comments

Comments
 (0)