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.0.9  | v3.3.1  |
| github-tags | codecov/codecov-action            | v3.1.1  | v3.1.4  |
| packagist   | infection/infection               | 0.26.19 | 0.27.0  |
| github-tags | laminas/automatic-releases        | 1.19.0  | 1.24.0  |
| packagist   | phpstan/extension-installer       | 1.2.0   | 1.3.1   |
| packagist   | phpstan/phpstan                   | 1.8.10  | 1.10.18 |
| packagist   | phpstan/phpstan-deprecation-rules | 1.0.0   | 1.1.3   |
| packagist   | phpstan/phpstan-phpunit           | 1.1.1   | 1.3.13  |
| packagist   | phpstan/phpstan-strict-rules      | 1.4.4   | 1.5.1   |
| packagist   | phpunit/phpunit                   | 10.0.16 | 10.2.1  |
| packagist   | ramsey/uuid                       | 4.5.1   | 4.7.4   |
| github-tags | shivammathur/setup-php            | 2.21.2  | 2.25.2  |
  • Loading branch information
renovate[bot] authored Jun 7, 2023
1 parent 97f836f commit d6d53ee
Show file tree
Hide file tree
Showing 8 changed files with 247 additions and 317 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@v3"

- name: "Install PHP"
uses: "shivammathur/setup-php@2.21.2"
uses: "shivammathur/setup-php@2.25.2"
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.0.9"
uses: "actions/cache@v3.3.1"
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/composer-json-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: "actions/checkout@v3"

- name: "Install PHP"
uses: "shivammathur/setup-php@2.21.2"
uses: "shivammathur/setup-php@2.25.2"
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.0.9"
uses: "actions/cache@v3.3.1"
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/mutation-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: "actions/checkout@v3"

- name: "Install PHP"
uses: "shivammathur/setup-php@2.21.2"
uses: "shivammathur/setup-php@2.25.2"
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.0.9"
uses: "actions/cache@v3.3.1"
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"
Expand Down
14 changes: 7 additions & 7 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@v3"

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

- name: "Cache dependencies"
uses: "actions/cache@v3.0.9"
uses: "actions/cache@v3.3.1"
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
uses: "actions/checkout@v3"

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

- name: "Cache dependencies"
uses: "actions/cache@v3.0.9"
uses: "actions/cache@v3.3.1"
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
uses: "actions/checkout@v3"

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

- name: "Cache dependencies"
uses: "actions/cache@v3.0.9"
uses: "actions/cache@v3.3.1"
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"
Expand All @@ -165,4 +165,4 @@ jobs:
run: "make phpunit PHPUNIT_FLAGS='--coverage-text --coverage-clover=coverage.xml'"

- name: "Upload Coverage"
uses: "codecov/[email protected].1"
uses: "codecov/[email protected].4"
10 changes: 5 additions & 5 deletions .github/workflows/release-on-milestone-closed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: "actions/checkout@v3"

- name: "Release"
uses: "laminas/automatic-releases@1.19.0"
uses: "laminas/automatic-releases@1.24.0"
with:
command-name: "laminas:automatic-releases:release"
env:
Expand All @@ -28,7 +28,7 @@ jobs:
"GIT_AUTHOR_EMAIL": ${{ secrets.GIT_AUTHOR_EMAIL }}

- name: "Create Merge-Up Pull Request"
uses: "laminas/automatic-releases@1.19.0"
uses: "laminas/automatic-releases@1.24.0"
with:
command-name: "laminas:automatic-releases:create-merge-up-pull-request"
env:
Expand All @@ -39,7 +39,7 @@ jobs:
"GIT_AUTHOR_EMAIL": ${{ secrets.GIT_AUTHOR_EMAIL }}

- name: "Create and/or Switch to new Release Branch"
uses: "laminas/automatic-releases@1.19.0"
uses: "laminas/automatic-releases@1.24.0"
with:
command-name: "laminas:automatic-releases:switch-default-branch-to-next-minor"
env:
Expand All @@ -50,7 +50,7 @@ jobs:
"GIT_AUTHOR_EMAIL": ${{ secrets.GIT_AUTHOR_EMAIL }}

- name: "Bump Changelog Version On Originating Release Branch"
uses: "laminas/automatic-releases@1.19.0"
uses: "laminas/automatic-releases@1.24.0"
with:
command-name: "laminas:automatic-releases:bump-changelog"
env:
Expand All @@ -61,7 +61,7 @@ jobs:
"GIT_AUTHOR_EMAIL": ${{ secrets.GIT_AUTHOR_EMAIL }}

- name: "Create new milestones"
uses: "laminas/automatic-releases@1.19.0"
uses: "laminas/automatic-releases@1.24.0"
with:
command-name: "laminas:automatic-releases:create-milestones"
env:
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@v3"

- name: "Install PHP"
uses: "shivammathur/setup-php@2.21.2"
uses: "shivammathur/setup-php@2.25.2"
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.0.9"
uses: "actions/cache@v3.3.1"
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"
Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@
],
"require": {
"php": "~8.1.0 || ~8.2.0",
"ramsey/uuid": "^4.5"
"ramsey/uuid": "^4.7.4"
},
"require-dev": {
"infection/infection": "^0.26.19",
"infection/infection": "^0.27.0",
"lcobucci/coding-standard": "^9.0",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-strict-rules": "^1.4",
"phpunit/phpunit": "^10.0.16"
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan": "^1.10.18",
"phpstan/phpstan-deprecation-rules": "^1.1.3",
"phpstan/phpstan-phpunit": "^1.3.13",
"phpstan/phpstan-strict-rules": "^1.5.1",
"phpunit/phpunit": "^10.2.1"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit d6d53ee

Please sign in to comment.