Skip to content

Commit

Permalink
Update all non-major dependencies
Browse files Browse the repository at this point in the history
| 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.29.3 |
| packagist   | monolog/monolog             | 3.5.0  | 3.6.0  |
| packagist   | phpstan/extension-installer | 1.3.1  | 1.4.0  |
| packagist   | react/socket                | 1.14.0 | 1.15.0 |
| github-tags | shivammathur/setup-php      | 2.28.0 | 2.30.5 |
  • Loading branch information
renovate[bot] committed Jun 6, 2024
1 parent 10473c9 commit 48dee63
Show file tree
Hide file tree
Showing 6 changed files with 295 additions and 248 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: "actions/checkout@v4"

- name: "Install PHP"
uses: "shivammathur/setup-php@2.28.0"
uses: "shivammathur/setup-php@2.30.5"
with:
coverage: "none"
php-version: "${{ matrix.php-version }}"
Expand All @@ -36,7 +36,7 @@ jobs:
run: echo "::set-output name=dir::$(composer config cache-files-dir)"

- name: "Cache dependencies"
uses: "actions/cache@v3.3.2"
uses: "actions/cache@v3.3.3"
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/mutation-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: "actions/checkout@v4"

- name: "Install PHP"
uses: "shivammathur/setup-php@2.28.0"
uses: "shivammathur/setup-php@2.30.5"
with:
coverage: "xdebug"
php-version: "${{ matrix.php-version }}"
Expand All @@ -36,7 +36,7 @@ jobs:
run: echo "::set-output name=dir::$(composer config cache-files-dir)"

- name: "Cache dependencies"
uses: "actions/cache@v3.3.2"
uses: "actions/cache@v3.3.3"
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"
Expand All @@ -58,4 +58,4 @@ jobs:
run: "make infection PHPUNIT_FLAGS=--coverage-clover=coverage.xml INFECTION_FLAGS=--logger-github"

- name: "Upload Code Coverage"
uses: "codecov/codecov-action@v3.1.4"
uses: "codecov/codecov-action@v3.1.6"
4 changes: 2 additions & 2 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
uses: "actions/checkout@v4"

- name: "Install PHP"
uses: "shivammathur/setup-php@2.28.0"
uses: "shivammathur/setup-php@2.30.5"
with:
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1
Expand All @@ -38,7 +38,7 @@ jobs:
run: echo "::set-output name=dir::$(composer config cache-files-dir)"

- name: "Cache dependencies"
uses: "actions/cache@v3.3.2"
uses: "actions/cache@v3.3.3"
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: "actions/checkout@v4"

- name: "Install PHP"
uses: "shivammathur/setup-php@2.28.0"
uses: "shivammathur/setup-php@2.30.5"
with:
coverage: "none"
php-version: "${{ matrix.php-version }}"
Expand All @@ -36,7 +36,7 @@ jobs:
run: echo "::set-output name=dir::$(composer config cache-files-dir)"

- name: "Cache dependencies"
uses: "actions/cache@v3.3.2"
uses: "actions/cache@v3.3.3"
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"react/socket": "^1.13.0"
},
"require-dev": {
"infection/infection": "^0.27",
"infection/infection": "^0.29",
"lcobucci/coding-standard": "^11.0.0",
"monolog/monolog": "^3.4.0",
"phpstan/extension-installer": "^1.3.1",
Expand Down

0 comments on commit 48dee63

Please sign in to comment.