Skip to content

Commit 19ea981

Browse files
Update all non-major dependencies
| datasource | package | from | to | | ----------- | -------------------------- | ------- | ------ | | github-tags | actions/cache | v4.2.1 | v4.3.0 | | github-tags | codecov/codecov-action | v5.4.0 | v5.5.1 | | packagist | infection/infection | 0.29.12 | 0.31.9 | | packagist | jms/serializer | 3.32.3 | 3.32.5 | | packagist | laminas/laminas-diactoros | 3.5.0 | 3.8.0 | | packagist | lcobucci/coding-standard | 11.1.0 | 11.2.0 | | packagist | middlewares/negotiation | 2.1.1 | 2.2.0 | | github-tags | containerbase/php-prebuild | 8.4.15 | 8.5.0 | | packagist | twig/twig | 3.20.0 | 3.22.1 |
1 parent bdaa1ca commit 19ea981

File tree

7 files changed

+389
-109
lines changed

7 files changed

+389
-109
lines changed

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
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@v4.2.1"
39+
uses: "actions/cache@v4.3.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

Lines changed: 1 addition & 1 deletion
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@v4.2.1"
39+
uses: "actions/cache@v4.3.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

Lines changed: 2 additions & 2 deletions
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@v4.2.1"
39+
uses: "actions/cache@v4.3.0"
4040
with:
4141
path: ${{ steps.composer-cache.outputs.dir }}
4242
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"
@@ -58,4 +58,4 @@ jobs:
5858
run: "make infection PHPUNIT_FLAGS=--coverage-clover=coverage.xml"
5959

6060
- name: "Upload Code Coverage"
61-
uses: "codecov/codecov-action@v5.4.0"
61+
uses: "codecov/codecov-action@v5.5.1"

.github/workflows/phpunit.yml

Lines changed: 2 additions & 2 deletions
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@v4.2.1"
42+
uses: "actions/cache@v4.3.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@v4.2.1"
98+
uses: "actions/cache@v4.3.0"
9999
with:
100100
path: ${{ steps.composer-cache.outputs.dir }}
101101
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
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@v4.2.1"
39+
uses: "actions/cache@v4.3.0"
4040
with:
4141
path: ${{ steps.composer-cache.outputs.dir }}
4242
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
}
1111
],
1212
"require": {
13-
"php": "~8.3.0 || ~8.4.0",
13+
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
1414
"ext-json": "*",
1515
"fig/http-message-util": "^1.1.5",
1616
"psr/http-factory": "^1.1",
1717
"psr/http-message": "^2.0",
1818
"psr/http-server-middleware": "^1.0.2"
1919
},
2020
"require-dev": {
21-
"infection/infection": "^0.29",
21+
"infection/infection": "^0.31",
2222
"jms/serializer": "^3.31",
2323
"laminas/laminas-diactoros": "^3.5",
2424
"lcobucci/coding-standard": "^11.1",

0 commit comments

Comments
 (0)