Skip to content

Commit cd7ffef

Browse files
Update all non-major dependencies
| datasource | package | from | to | | ----------- | --------------------------- | ------- | ------ | | github-tags | actions/cache | v3.3.1 | v3.3.2 | | github-tags | codecov/codecov-action | v3.1.1 | v3.1.4 | | packagist | infection/infection | 0.26.19 | 0.27.0 | | packagist | phpstan/extension-installer | 1.2.0 | 1.3.1 | | packagist | phpunit/phpunit | 10.0.19 | 10.3.3 | | github-tags | shivammathur/setup-php | 2.24.0 | 2.25.5 |
1 parent e901600 commit cd7ffef

8 files changed

Lines changed: 216 additions & 212 deletions

File tree

.github/workflows/backwards-compatibility.yml

Lines changed: 2 additions & 2 deletions
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.25.5"
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.3.2"
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

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.3.2"
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.3.2"
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: 2 additions & 2 deletions
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.3.2"
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@v3.1.1"
61+
uses: "codecov/codecov-action@v3.1.4"

.github/workflows/phpunit.yml

Lines changed: 2 additions & 2 deletions
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.3.2"
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.3.2"
100100
with:
101101
path: ${{ steps.composer-cache.outputs.dir }}
102102
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"

.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.3.2"
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"doctrine/annotations": "^2.0.1"
1515
},
1616
"require-dev": {
17-
"infection/infection": "^0.26",
17+
"infection/infection": "^0.27",
1818
"lcobucci/coding-standard": "^9.0",
1919
"phpstan/extension-installer": "^1.2",
2020
"phpstan/phpstan": "^1.10.10",

0 commit comments

Comments
 (0)