Skip to content

Commit d0f8d30

Browse files
Build(deps): bump actions/cache from 4 to 5 (#4606)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 6868f4c commit d0f8d30

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,15 +92,15 @@ jobs:
9292

9393
- name: Cache extensions 5.3 - 5.6
9494
if: matrix.php < '7.0'
95-
uses: actions/cache@v4
95+
uses: actions/cache@v5
9696
with:
9797
path: ${{ steps.cache-env-php5.outputs.dir }}
9898
key: ${{ steps.cache-env-php5.outputs.key }}
9999
restore-keys: ${{ steps.cache-env-php5.outputs.key }}
100100

101101
- name: Cache extensions 7.0 - 8.0
102102
if: matrix.php >= '7.0'
103-
uses: actions/cache@v4
103+
uses: actions/cache@v5
104104
with:
105105
path: ${{ steps.cache-env-php7.outputs.dir }}
106106
key: ${{ steps.cache-env-php7.outputs.key }}
@@ -124,7 +124,7 @@ jobs:
124124
run: echo "COMPOSER_CACHE_DIR=~\AppData\Local\Composer" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
125125

126126
- name: Cache dependencies installed with composer
127-
uses: actions/cache@v4
127+
uses: actions/cache@v5
128128
with:
129129
path: ${{ env.COMPOSER_CACHE_DIR }}
130130
key: php${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}

0 commit comments

Comments
 (0)