Skip to content

Commit 2b9cbf2

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 | doctrine/annotations | 2.0.1 | 2.0.2 | | packagist | infection/infection | 0.26.19 | 0.29.14 | | github-tags | laminas/automatic-releases | 1.24.0 | 1.25.0 | | github-tags | containerbase/php-prebuild | 8.2.28 | 8.4.5 | | github-tags | shivammathur/setup-php | 2.24.0 | 2.32.0 |
1 parent 9f46feb commit 2b9cbf2

8 files changed

+16
-16
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.3"
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.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

+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.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

+2-2
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') }}"
@@ -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].1"
61+
uses: "codecov/[email protected].6"

.github/workflows/phpunit.yml

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

4242
- name: "Cache dependencies"
43-
uses: "actions/cache@v3.3.1"
43+
uses: "actions/cache@v3.4.3"
4444
with:
4545
path: ${{ steps.composer-cache.outputs.dir }}
4646
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"
@@ -96,7 +96,7 @@ jobs:
9696
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
9797

9898
- name: "Cache dependencies"
99-
uses: "actions/cache@v3.3.1"
99+
uses: "actions/cache@v3.4.3"
100100
with:
101101
path: ${{ steps.composer-cache.outputs.dir }}
102102
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

+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.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

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
}
1111
],
1212
"require": {
13-
"php": "~8.1.0 || ~8.2.0",
13+
"php": "~8.1.0 || ~8.2.0 || ~8.4.0",
1414
"doctrine/annotations": "^2.0.1"
1515
},
1616
"require-dev": {
17-
"infection/infection": "^0.26",
17+
"infection/infection": "^0.29",
1818
"lcobucci/coding-standard": "^9.0",
1919
"phpstan/extension-installer": "^1.2",
2020
"phpstan/phpstan": "^1.10.10",

0 commit comments

Comments
 (0)