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.3 |
| github-tags | codecov/codecov-action      | v3.1.1  | v3.1.6 |
| packagist   | infection/infection         | 0.26.19 | 0.29.6 |
| github-tags | laminas/automatic-releases  | 1.19.0  | 1.24.0 |
| packagist   | phpstan/extension-installer | 1.2.0   | 1.4.1  |
| packagist   | ramsey/uuid                 | 4.5.1   | 4.7.6  |
| github-tags | shivammathur/setup-php      | 2.21.2  | 2.31.0 |
  • Loading branch information
renovate[bot] authored Jun 24, 2024
1 parent 2b1d145 commit c729708
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 21 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.31.0"
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.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/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.31.0"
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.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/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.31.0"
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.3"
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.31.0"
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.3"
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.31.0"
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.3"
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.31.0"
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.3"
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].6"
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.31.0"
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.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 @@ -14,7 +14,7 @@
"ramsey/uuid": "^4.5"
},
"require-dev": {
"infection/infection": "^0.26.19",
"infection/infection": "^0.29.0",
"lcobucci/coding-standard": "^11.0",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.8",
Expand Down

0 comments on commit c729708

Please sign in to comment.