Skip to content

Commit ddef91e

Browse files
Update actions/cache action to v4
| datasource | package | from | to | | ----------- | ------------- | ------- | ------ | | github-tags | actions/cache | v3.0.11 | v4.0.0 | | github-tags | actions/cache | v3.3.1 | v4.0.0 |
1 parent ec1dfef commit ddef91e

6 files changed

+8
-8
lines changed

Diff for: .github/workflows/backwards-compatibility.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run: echo "composer_cache_dir=$(composer global config cache-files-dir)" >> $GITHUB_OUTPUT
3030

3131
- name: "Cache dependencies"
32-
uses: "actions/cache@v3.3.1"
32+
uses: "actions/cache@v4.0.0"
3333
with:
3434
path: ${{ steps.composer-cache.outputs.composer_cache_dir }}
3535
key: "php-8.1-bc-break-check-${{ hashFiles('.github/workflows/backwards-compatibility.yml') }}"

Diff for: .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.0.11"
39+
uses: "actions/cache@v4.0.0"
4040
with:
4141
path: ${{ steps.composer-cache.outputs.dir }}
4242
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"

Diff for: .github/workflows/composer-json-lint.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.0.11"
39+
uses: "actions/cache@v4.0.0"
4040
with:
4141
path: ${{ steps.composer-cache.outputs.dir }}
4242
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"

Diff for: .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.0.11"
39+
uses: "actions/cache@v4.0.0"
4040
with:
4141
path: ${{ steps.composer-cache.outputs.dir }}
4242
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"

Diff for: .github/workflows/phpunit.yml

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

4141
- name: "Cache dependencies"
42-
uses: "actions/cache@v3.0.11"
42+
uses: "actions/cache@v4.0.0"
4343
with:
4444
path: ${{ steps.composer-cache.outputs.dir }}
4545
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"
@@ -95,7 +95,7 @@ jobs:
9595
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
9696

9797
- name: "Cache dependencies"
98-
uses: "actions/cache@v3.0.11"
98+
uses: "actions/cache@v4.0.0"
9999
with:
100100
path: ${{ steps.composer-cache.outputs.dir }}
101101
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"
@@ -139,7 +139,7 @@ jobs:
139139
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
140140

141141
- name: "Cache dependencies"
142-
uses: "actions/cache@v3.0.11"
142+
uses: "actions/cache@v4.0.0"
143143
with:
144144
path: ${{ steps.composer-cache.outputs.dir }}
145145
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"

Diff for: .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.0.11"
39+
uses: "actions/cache@v4.0.0"
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)