Skip to content

Commit 39ff15f

Browse files
Bump actions/cache from 3 to 4 (#3742)
1 parent e2e738a commit 39ff15f

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

.github/workflows/check-files.yml

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

6565
- name: Cache dependencies
66-
uses: actions/cache@v3
66+
uses: actions/cache@v4
6767
with:
6868
path: ${{ steps.composer-cache.outputs.dir }}
6969
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/composer.yml

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

2121
- name: Cache dependencies
22-
uses: actions/cache@v3
22+
uses: actions/cache@v4
2323
with:
2424
path: ${{ steps.composer-cache.outputs.dir }}
2525
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/php-cs-fixer.yml

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

2626
- name: Cache dependencies
27-
uses: actions/cache@v3
27+
uses: actions/cache@v4
2828
with:
2929
path: ${{ steps.composer-cache.outputs.dir }}
3030
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/phpcs.yml

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

3636
- name: Cache dependencies
37-
uses: actions/cache@v3
37+
uses: actions/cache@v4
3838
with:
3939
path: ${{ steps.composer-cache.outputs.dir }}
4040
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/phpstan.yml

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

2929
- name: Cache dependencies
30-
uses: actions/cache@v3
30+
uses: actions/cache@v4
3131
with:
3232
path: ${{ steps.composer-cache.outputs.dir }}
3333
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/phpunit.yml

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

2828
- name: Cache dependencies
29-
uses: actions/cache@v3
29+
uses: actions/cache@v4
3030
with:
3131
path: ${{ steps.composer-cache.outputs.dir }}
3232
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/release.yml

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

2222
- name: Cache dependencies
23-
uses: actions/cache@v3
23+
uses: actions/cache@v4
2424
with:
2525
path: ${{ steps.composer-cache.outputs.dir }}
2626
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/security-php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v4
2020

21-
- uses: actions/cache@v3
21+
- uses: actions/cache@v4
2222
id: cache-db
2323
with:
2424
path: ~/.symfony/cache

.github/workflows/sonar.yml

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

3737
- name: Cache dependencies
38-
uses: actions/cache@v3
38+
uses: actions/cache@v4
3939
with:
4040
path: ${{ steps.composer-cache.outputs.dir }}
4141
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

0 commit comments

Comments
 (0)