Skip to content

Commit b2a5f34

Browse files
Update all non-major dependencies
| datasource | package | from | to | | ----------- | --------------------------------------- | ------- | ------- | | github-tags | actions/cache | v3.3.1 | v3.4.3 | | github-tags | codecov/codecov-action | v3.1.1 | v3.1.6 | | packagist | infection/infection | 0.26.19 | 0.29.14 | | packagist | laminas/laminas-diactoros | 2.24.2 | 2.26.0 | | packagist | lcobucci/content-negotiation-middleware | 3.1.0 | 3.2.0 | | packagist | middlewares/negotiation | 2.1.0 | 2.2.0 | | github-tags | containerbase/php-prebuild | 8.2.28 | 8.4.5 | | packagist | psr/http-factory | 1.0.1 | 1.1.0 | | packagist | psr/http-message | 1.0.1 | 1.1 | | packagist | psr/http-server-handler | 1.0.1 | 1.0.2 | | packagist | psr/http-server-middleware | 1.0.1 | 1.0.2 | | github-tags | shivammathur/setup-php | 2.24.0 | 2.32.0 |
1 parent 3b1372a commit b2a5f34

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
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@v3.3.1"
39+
uses: "actions/cache@v3.4.3"
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@v3.3.1"
39+
uses: "actions/cache@v3.4.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

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@v3.3.1"
39+
uses: "actions/cache@v3.4.3"
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

Lines changed: 5 additions & 5 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@v3.3.1"
42+
uses: "actions/cache@v3.4.3"
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.3.1"
98+
uses: "actions/cache@v3.4.3"
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.24.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.3.1"
142+
uses: "actions/cache@v3.4.3"
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

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@v3.3.1"
39+
uses: "actions/cache@v3.4.3"
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,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/foundation": "^1.0.x-dev",
1515
"fig/http-message-util": "^1.1.5",
1616
"lcobucci/content-negotiation-middleware": "^3.1",
@@ -21,7 +21,7 @@
2121
"psr/http-server-middleware": "^1.0.1"
2222
},
2323
"require-dev": {
24-
"infection/infection": "^0.26.19",
24+
"infection/infection": "^0.29.0",
2525
"laminas/laminas-diactoros": "^2.24.2",
2626
"lcobucci/coding-standard": "^9.0",
2727
"phpstan/extension-installer": "^1.2",

0 commit comments

Comments
 (0)