Skip to content

Commit 4f0078f

Browse files
Bump actions/cache from 3 to 4 (#17)
1 parent 721f62a commit 4f0078f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/test-coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
5050

5151
- name: Cache composer dependencies
52-
uses: actions/cache@v3
52+
uses: actions/cache@v4
5353
with:
5454
path: ${{ steps.composer-cache.outputs.COMPOSER_CACHE_FILES_DIR }}
5555
key: composer-${{ matrix.php-version }}-${{ hashFiles('**/composer.*') }}

.github/workflows/test-phpstan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
5050

5151
- name: Cache composer dependencies
52-
uses: actions/cache@v3
52+
uses: actions/cache@v4
5353
with:
5454
path: ${{ steps.composer-cache.outputs.COMPOSER_CACHE_FILES_DIR }}
5555
key: composer-${{ matrix.php-version }}-${{ hashFiles('**/composer.*') }}
@@ -61,7 +61,7 @@ jobs:
6161
run: mkdir --parents build/phpstan
6262

6363
- name: Cache PHPStan cache directory
64-
uses: actions/cache@v3
64+
uses: actions/cache@v4
6565
with:
6666
path: build/phpstan
6767
key: phpstan-${{ github.sha }}

.github/workflows/test-phpunit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
5050

5151
- name: Cache composer dependencies
52-
uses: actions/cache@v3
52+
uses: actions/cache@v4
5353
with:
5454
path: ${{ steps.composer-cache.outputs.COMPOSER_CACHE_FILES_DIR }}
5555
key: composer-${{ matrix.php-version }}-${{ hashFiles('**/composer.*') }}

0 commit comments

Comments
 (0)