Skip to content

Commit 44ac6f5

Browse files
Update all non-major dependencies
| datasource | package | from | to | | ----------- | ---------------------- | ------ | ------- | | github-tags | actions/cache | v3.3.2 | v3.3.3 | | github-tags | codecov/codecov-action | v3.1.4 | v3.1.6 | | packagist | infection/infection | 0.27.8 | 0.27.10 | | packagist | react/socket | 1.14.0 | 1.15.0 | | github-tags | shivammathur/setup-php | 2.28.0 | 2.30.0 |
1 parent 3ec9ef0 commit 44ac6f5

File tree

5 files changed

+182
-258
lines changed

5 files changed

+182
-258
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.30.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/[email protected].2"
39+
uses: "actions/[email protected].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.30.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/[email protected].2"
39+
uses: "actions/[email protected].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/[email protected].4"
61+
uses: "codecov/[email protected].6"

.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.30.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/[email protected].2"
41+
uses: "actions/[email protected].3"
4242
with:
4343
path: ${{ steps.composer-cache.outputs.dir }}
4444
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"

.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.30.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/[email protected].2"
39+
uses: "actions/[email protected].3"
4040
with:
4141
path: ${{ steps.composer-cache.outputs.dir }}
4242
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"

0 commit comments

Comments
 (0)