Skip to content

Commit b3d2f8e

Browse files
committed
Change cache key
1 parent cc0ff92 commit b3d2f8e

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/jobs/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ jobs:
6262
uses: actions/cache@v4
6363
with:
6464
path: ${{ steps.composer-cache.outputs.dir }}
65-
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
65+
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
6666
restore-keys: |
67-
${{ runner.os }}-composer-
67+
${{ runner.os }}-php-
6868
6969
- name: PHP Version
7070
run: php -v

.github/workflows/jobs/phpcs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ jobs:
3737
uses: actions/cache@v4
3838
with:
3939
path: ${{ steps.composer-cache.outputs.dir }}
40-
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
40+
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
4141
restore-keys: |
42-
${{ runner.os }}-composer-
42+
${{ runner.os }}-php-
4343
4444
- name: Install Root dependencies
4545
run: composer install --prefer-dist --no-progress

.github/workflows/jobs/phpstan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ jobs:
3737
uses: actions/cache@v4
3838
with:
3939
path: ${{ steps.composer-cache.outputs.dir }}
40-
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
40+
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
4141
restore-keys: |
42-
${{ runner.os }}-composer-
42+
${{ runner.os }}-php-
4343
4444
- name: Install Root dependencies
4545
run: composer install --prefer-dist --no-progress

.github/workflows/jobs/virus-scan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ jobs:
3737
uses: actions/cache@v4
3838
with:
3939
path: ${{ steps.composer-cache.outputs.dir }}
40-
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
40+
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
4141
restore-keys: |
42-
${{ runner.os }}-composer-
42+
${{ runner.os }}-php-
4343
4444
- name: Install Root dependencies
4545
run: composer install --prefer-dist --no-progress

0 commit comments

Comments
 (0)