Skip to content

Commit 945694c

Browse files
Update all non-major dependencies
| datasource | package | from | to | | ----------- | -------------------------- | ------- | ------- | | github-tags | actions/cache | v3.0.11 | v3.4.0 | | github-tags | actions/cache | v3.3.1 | v3.4.0 | | github-tags | codecov/codecov-action | v3.1.1 | v3.1.6 | | packagist | infection/infection | 0.26.19 | 0.29.10 | | packagist | lcobucci/coding-standard | 11.0.0 | 11.1.0 | | packagist | lcobucci/di-builder | 7.2.1 | 7.4.0 | | github-tags | containerbase/php-prebuild | 8.2.27 | 8.4.3 | | github-tags | shivammathur/setup-php | 2.22.0 | 2.32.0 | | github-tags | shivammathur/setup-php | 2.24.0 | 2.32.0 |
1 parent ec1dfef commit 945694c

7 files changed

+13
-13
lines changed

.github/workflows/backwards-compatibility.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fetch-depth: 0
1717

1818
- name: "Install PHP"
19-
uses: "shivammathur/setup-php@2.24.0"
19+
uses: "shivammathur/setup-php@2.32.0"
2020
with:
2121
php-version: "8.1"
2222
ini-values: memory_limit=-1
@@ -29,7 +29,7 @@ jobs:
2929
run: echo "composer_cache_dir=$(composer global config cache-files-dir)" >> $GITHUB_OUTPUT
3030

3131
- name: "Cache dependencies"
32-
uses: "actions/cache@v3.3.1"
32+
uses: "actions/cache@v3.4.0"
3333
with:
3434
path: ${{ steps.composer-cache.outputs.composer_cache_dir }}
3535
key: "php-8.1-bc-break-check-${{ hashFiles('.github/workflows/backwards-compatibility.yml') }}"

.github/workflows/coding-standards.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
3737

3838
- name: "Cache dependencies"
39-
uses: "actions/cache@v3.0.11"
39+
uses: "actions/cache@v3.4.0"
4040
with:
4141
path: ${{ steps.composer-cache.outputs.dir }}
4242
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"

.github/workflows/composer-json-lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
3737

3838
- name: "Cache dependencies"
39-
uses: "actions/cache@v3.0.11"
39+
uses: "actions/cache@v3.4.0"
4040
with:
4141
path: ${{ steps.composer-cache.outputs.dir }}
4242
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"

.github/workflows/mutation-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
3737

3838
- name: "Cache dependencies"
39-
uses: "actions/cache@v3.0.11"
39+
uses: "actions/cache@v3.4.0"
4040
with:
4141
path: ${{ steps.composer-cache.outputs.dir }}
4242
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"

.github/workflows/phpunit.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
4040

4141
- name: "Cache dependencies"
42-
uses: "actions/cache@v3.0.11"
42+
uses: "actions/cache@v3.4.0"
4343
with:
4444
path: ${{ steps.composer-cache.outputs.dir }}
4545
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"
@@ -95,7 +95,7 @@ jobs:
9595
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
9696

9797
- name: "Cache dependencies"
98-
uses: "actions/cache@v3.0.11"
98+
uses: "actions/cache@v3.4.0"
9999
with:
100100
path: ${{ steps.composer-cache.outputs.dir }}
101101
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"
@@ -127,7 +127,7 @@ jobs:
127127
uses: "actions/checkout@v4"
128128

129129
- name: "Install PHP"
130-
uses: "shivammathur/setup-php@2.22.0"
130+
uses: "shivammathur/setup-php@2.32.0"
131131
with:
132132
coverage: "xdebug"
133133
php-version: "${{ matrix.php-version }}"
@@ -139,7 +139,7 @@ jobs:
139139
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
140140

141141
- name: "Cache dependencies"
142-
uses: "actions/cache@v3.0.11"
142+
uses: "actions/cache@v3.4.0"
143143
with:
144144
path: ${{ steps.composer-cache.outputs.dir }}
145145
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"
@@ -165,4 +165,4 @@ jobs:
165165
run: "make phpunit PHPUNIT_FLAGS='--coverage-text --coverage-clover=coverage.xml'"
166166

167167
- name: "Upload Coverage"
168-
uses: "codecov/[email protected].1"
168+
uses: "codecov/[email protected].6"

.github/workflows/static-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
3737

3838
- name: "Cache dependencies"
39-
uses: "actions/cache@v3.0.11"
39+
uses: "actions/cache@v3.4.0"
4040
with:
4141
path: ${{ steps.composer-cache.outputs.dir }}
4242
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
}
1111
],
1212
"require": {
13-
"php": "~8.1.0 || ~8.2.0",
13+
"php": "~8.1.0 || ~8.2.0 || ~8.4.0",
1414
"chimera/bus-implementation": "^1.0",
1515
"chimera/foundation": "^1.0.x-dev",
1616
"chimera/routing": "^1.0.x-dev",
@@ -22,7 +22,7 @@
2222
"chimera/mapping": "^1.0.x-dev",
2323
"chimera/routing-mezzio": "^1.0.x-dev",
2424
"chimera/serialization-jms": "^1.0.x-dev",
25-
"infection/infection": "^0.26",
25+
"infection/infection": "^0.29",
2626
"lcobucci/coding-standard": "^11.0",
2727
"lcobucci/error-handling-middleware": "^1.4",
2828
"phpstan/extension-installer": "^1.2",

0 commit comments

Comments
 (0)