Skip to content

Commit f0e0368

Browse files
Update all non-major dependencies
| datasource | package | from | to | | ----------- | -------------------------- | ------ | ------- | | github-tags | actions/cache | v4.1.2 | v4.2.3 | | github-tags | codecov/codecov-action | v5.0.3 | v5.4.0 | | packagist | infection/infection | 0.27.8 | 0.29.14 | | github-tags | laminas/automatic-releases | 1.24.0 | 1.25.0 | | packagist | lcobucci/coding-standard | 11.0.0 | 11.1.0 | | packagist | monolog/monolog | 3.5.0 | 3.9.0 | | packagist | psr/log | 3.0.0 | 3.0.2 | | packagist | react/socket | 1.14.0 | 1.16.0 | | github-tags | shivammathur/setup-php | 2.28.0 | 2.32.0 |
1 parent 311c9c5 commit f0e0368

7 files changed

+386
-301
lines changed

.github/workflows/coding-standards.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: "actions/checkout@v4"
2525

2626
- name: "Install PHP"
27-
uses: "shivammathur/setup-php@2.28.0"
27+
uses: "shivammathur/setup-php@2.32.0"
2828
with:
2929
coverage: "none"
3030
php-version: "${{ matrix.php-version }}"
@@ -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.1.2"
39+
uses: "actions/cache@v4.2.3"
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

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: "actions/checkout@v4"
2525

2626
- name: "Install PHP"
27-
uses: "shivammathur/setup-php@2.28.0"
27+
uses: "shivammathur/setup-php@2.32.0"
2828
with:
2929
coverage: "xdebug"
3030
php-version: "${{ matrix.php-version }}"
@@ -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.1.2"
39+
uses: "actions/cache@v4.2.3"
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 INFECTION_FLAGS=--logger-github"
5959

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

.github/workflows/phpunit.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
uses: "actions/checkout@v4"
2828

2929
- name: "Install PHP"
30-
uses: "shivammathur/setup-php@2.28.0"
30+
uses: "shivammathur/setup-php@2.32.0"
3131
with:
3232
php-version: "${{ matrix.php-version }}"
3333
ini-values: memory_limit=-1
@@ -38,7 +38,7 @@ jobs:
3838
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
3939

4040
- name: "Cache dependencies"
41-
uses: "actions/cache@v4.1.2"
41+
uses: "actions/cache@v4.2.3"
4242
with:
4343
path: ${{ steps.composer-cache.outputs.dir }}
4444
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"

.github/workflows/release-on-milestone-closed.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: "actions/checkout@v4"
1818

1919
- name: "Release"
20-
uses: "laminas/automatic-releases@1.24.0"
20+
uses: "laminas/automatic-releases@1.25.0"
2121
with:
2222
command-name: "laminas:automatic-releases:release"
2323
env:
@@ -28,7 +28,7 @@ jobs:
2828
"GIT_AUTHOR_EMAIL": ${{ secrets.GIT_AUTHOR_EMAIL }}
2929

3030
- name: "Create Merge-Up Pull Request"
31-
uses: "laminas/automatic-releases@1.24.0"
31+
uses: "laminas/automatic-releases@1.25.0"
3232
with:
3333
command-name: "laminas:automatic-releases:create-merge-up-pull-request"
3434
env:
@@ -39,7 +39,7 @@ jobs:
3939
"GIT_AUTHOR_EMAIL": ${{ secrets.GIT_AUTHOR_EMAIL }}
4040

4141
- name: "Create and/or Switch to new Release Branch"
42-
uses: "laminas/automatic-releases@1.24.0"
42+
uses: "laminas/automatic-releases@1.25.0"
4343
with:
4444
command-name: "laminas:automatic-releases:switch-default-branch-to-next-minor"
4545
env:
@@ -50,7 +50,7 @@ jobs:
5050
"GIT_AUTHOR_EMAIL": ${{ secrets.GIT_AUTHOR_EMAIL }}
5151

5252
- name: "Bump Changelog Version On Originating Release Branch"
53-
uses: "laminas/automatic-releases@1.24.0"
53+
uses: "laminas/automatic-releases@1.25.0"
5454
with:
5555
command-name: "laminas:automatic-releases:bump-changelog"
5656
env:
@@ -61,7 +61,7 @@ jobs:
6161
"GIT_AUTHOR_EMAIL": ${{ secrets.GIT_AUTHOR_EMAIL }}
6262

6363
- name: "Create new milestones"
64-
uses: "laminas/automatic-releases@1.24.0"
64+
uses: "laminas/automatic-releases@1.25.0"
6565
with:
6666
command-name: "laminas:automatic-releases:create-milestones"
6767
env:

.github/workflows/static-analysis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: "actions/checkout@v4"
2525

2626
- name: "Install PHP"
27-
uses: "shivammathur/setup-php@2.28.0"
27+
uses: "shivammathur/setup-php@2.32.0"
2828
with:
2929
coverage: "none"
3030
php-version: "${{ matrix.php-version }}"
@@ -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.1.2"
39+
uses: "actions/cache@v4.2.3"
4040
with:
4141
path: ${{ steps.composer-cache.outputs.dir }}
4242
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"react/socket": "^1.13.0"
2626
},
2727
"require-dev": {
28-
"infection/infection": "^0.27",
28+
"infection/infection": "^0.29",
2929
"lcobucci/coding-standard": "^11.0.0",
3030
"monolog/monolog": "^3.4.0",
3131
"phpstan/extension-installer": "^1.3.1",

0 commit comments

Comments
 (0)