Skip to content

Commit 71474b3

Browse files
Update all non-major dependencies
| datasource | package | from | to | | ----------- | -------------------------- | ------ | ------ | | github-tags | actions/cache | v5.0.1 | v5.0.3 | | github-tags | actions/checkout | v6.0.1 | v6.0.2 | | packagist | infection/infection | 0.32.3 | 0.32.6 | | github-tags | laminas/automatic-releases | 1.25.0 | 1.26.2 |
1 parent 19b045c commit 71474b3

File tree

9 files changed

+23
-23
lines changed

9 files changed

+23
-23
lines changed

.github/workflows/backwards-compatibility.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: "Checkout"
14-
uses: "actions/checkout@v6.0.1"
14+
uses: "actions/checkout@v6.0.2"
1515
with:
1616
fetch-depth: 0
1717

@@ -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@v5.0.1"
32+
uses: "actions/cache@v5.0.3"
3333
with:
3434
path: ${{ steps.composer-cache.outputs.composer_cache_dir }}
3535
key: "php-8.3-bc-break-check-${{ hashFiles('.github/workflows/backwards-compatibility.yml') }}"

.github/workflows/benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: "Checkout"
24-
uses: "actions/checkout@v6.0.1"
24+
uses: "actions/checkout@v6.0.2"
2525

2626
- name: "Install PHP"
2727
uses: "shivammathur/setup-php@2.36.0"

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: "Checkout"
24-
uses: "actions/checkout@v6.0.1"
24+
uses: "actions/checkout@v6.0.2"
2525

2626
- name: "Install PHP"
2727
uses: "shivammathur/setup-php@2.36.0"

.github/workflows/composer-json-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: "Checkout"
24-
uses: "actions/checkout@v6.0.1"
24+
uses: "actions/checkout@v6.0.2"
2525

2626
- name: "Install PHP"
2727
uses: "shivammathur/setup-php@2.36.0"

.github/workflows/mutation-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: "Checkout"
24-
uses: "actions/checkout@v6.0.1"
24+
uses: "actions/checkout@v6.0.2"
2525

2626
- name: "Install PHP"
2727
uses: "shivammathur/setup-php@2.36.0"

.github/workflows/phpunit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: "Checkout"
28-
uses: "actions/checkout@v6.0.1"
28+
uses: "actions/checkout@v6.0.2"
2929

3030
- name: "Install PHP"
3131
uses: "shivammathur/setup-php@2.36.0"

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414

1515
steps:
1616
- name: "Checkout"
17-
uses: "actions/checkout@v6.0.1"
17+
uses: "actions/checkout@v6.0.2"
1818

1919
- name: "Release"
20-
uses: "laminas/automatic-releases@1.25.0"
20+
uses: "laminas/automatic-releases@1.26.2"
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.25.0"
31+
uses: "laminas/automatic-releases@1.26.2"
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.25.0"
42+
uses: "laminas/automatic-releases@1.26.2"
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.25.0"
53+
uses: "laminas/automatic-releases@1.26.2"
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.25.0"
64+
uses: "laminas/automatic-releases@1.26.2"
6565
with:
6666
command-name: "laminas:automatic-releases:create-milestones"
6767
env:

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: "Checkout"
24-
uses: "actions/checkout@v6.0.1"
24+
uses: "actions/checkout@v6.0.2"
2525

2626
- name: "Install PHP"
2727
uses: "shivammathur/setup-php@2.36.0"

composer.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)