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.8 |
| github-tags | laminas/automatic-releases | 1.19.0  | 1.25.0 |
| packagist   | lcobucci/coding-standard   | 11.0.0  | 11.1.0 |
| github-tags | containerbase/php-prebuild | 8.2.26  | 8.4.1  |
| packagist   | ramsey/uuid                | 4.5.1   | 4.7.6  |
| github-tags | shivammathur/setup-php     | 2.21.2  | 2.31.1 |
  • Loading branch information
renovate[bot] authored Nov 24, 2024
1 parent 2b1d145 commit 7c28268
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 22 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.1"
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.1"
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.1"
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.1"
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.1"
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.1"
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.25.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.25.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.25.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.25.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.25.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.1"
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 composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
}
],
"require": {
"php": "~8.1.0 || ~8.2.0",
"php": "~8.1.0 || ~8.2.0 || ~8.4.0",
"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 7c28268

Please sign in to comment.