Skip to content

Commit 595a58c

Browse files
authored
Merge pull request #1 from blitz-php/dependabot/github_actions/actions/cache-6
Bump actions/cache from 4 to 6
2 parents 25bf385 + 27179a3 commit 595a58c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

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

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

4848
- name: Cache dependencies
49-
uses: actions/cache@v4
49+
uses: actions/cache@v6
5050
with:
5151
path: ${{ env.COMPOSER_CACHE_FILES_DIR }}
5252
key: ${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }}

.github/workflows/test-phpstan.yml

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

5656
- name: Cache dependencies
57-
uses: actions/cache@v4
57+
uses: actions/cache@v6
5858
with:
5959
path: ${{ env.COMPOSER_CACHE_FILES_DIR }}
6060
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
@@ -64,7 +64,7 @@ jobs:
6464
run: mkdir -p build/phpstan
6565

6666
- name: Cache PHPStan result cache directory
67-
uses: actions/cache@v4
67+
uses: actions/cache@v6
6868
with:
6969
path: build/phpstan
7070
key: ${{ runner.os }}-phpstan-${{ github.sha }}

0 commit comments

Comments
 (0)