From 85005a2abfd62853f9a0d718d88caad533897da1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 30 Sep 2024 22:20:15 +0000 Subject: [PATCH] chore(deps): update all non-major dependencies | datasource | package | from | to | | ----------- | ------------------------------------ | -------- | --------- | | github-tags | actions/checkout | v4.1.1 | v4.2.0 | | packagist | ergebnis/composer-normalize | 2.31.0 | 2.44.0 | | packagist | ergebnis/license | 2.4.0 | 2.5.0 | | github-tags | containerbase/php-prebuild | 8.2.24 | 8.3.12 | | packagist | phpstan/extension-installer | 1.3.1 | 1.4.3 | | packagist | phpstan/phpstan | 1.10.57 | 1.12.5 | | packagist | phpstan/phpstan-deprecation-rules | 1.1.4 | 1.2.1 | | packagist | phpstan/phpstan-phpunit | 1.3.15 | 1.4.0 | | packagist | phpstan/phpstan-strict-rules | 1.5.2 | 1.6.1 | | packagist | phpunit/phpunit | 9.6.16 | 9.6.21 | | packagist | psalm/plugin-phpunit | 0.18.4 | 0.19.0 | | github-tags | ridedott/merge-me-action | v2.10.66 | v2.10.106 | | github-tags | shivammathur/setup-php | 2.29.0 | 2.31.1 | | github-tags | stefanzweifel/git-auto-commit-action | v5.0.0 | v5.0.1 | | packagist | vimeo/psalm | 5.20.0 | 5.26.1 | --- .github/workflows/integrate.yaml | 24 +++++++++---------- .../workflows/merge-renovate-upgrades.yaml | 2 +- .github/workflows/renew.yaml | 6 ++--- composer.json | 22 ++++++++--------- 4 files changed, 27 insertions(+), 27 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 75bdbc8..9732977 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -24,7 +24,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v4.1.1" + uses: "actions/checkout@v4.2.0" - name: "Lint YAML files" uses: "ibiqlik/action-yamllint@v3.1" @@ -34,7 +34,7 @@ jobs: strict: true - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.29.0" + uses: "shivammathur/setup-php@2.31.1" with: coverage: "none" php-version: "${{ matrix.php-version }}" @@ -81,10 +81,10 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v4.1.1" + uses: "actions/checkout@v4.2.0" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.29.0" + uses: "shivammathur/setup-php@2.31.1" with: coverage: "none" php-version: "${{ matrix.php-version }}" @@ -115,10 +115,10 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v4.1.1" + uses: "actions/checkout@v4.2.0" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.29.0" + uses: "shivammathur/setup-php@2.31.1" with: coverage: "none" php-version: "${{ matrix.php-version }}" @@ -176,10 +176,10 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v4.1.1" + uses: "actions/checkout@v4.2.0" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.29.0" + uses: "shivammathur/setup-php@2.31.1" with: coverage: "none" php-version: "${{ matrix.php-version }}" @@ -216,10 +216,10 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v4.1.1" + uses: "actions/checkout@v4.2.0" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.29.0" + uses: "shivammathur/setup-php@2.31.1" with: coverage: "xdebug" php-version: "${{ matrix.php-version }}" @@ -261,10 +261,10 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v4.1.1" + uses: "actions/checkout@v4.2.0" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.29.0" + uses: "shivammathur/setup-php@2.31.1" with: coverage: "xdebug" php-version: "${{ matrix.php-version }}" diff --git a/.github/workflows/merge-renovate-upgrades.yaml b/.github/workflows/merge-renovate-upgrades.yaml index 7c8a7b1..e875aa7 100644 --- a/.github/workflows/merge-renovate-upgrades.yaml +++ b/.github/workflows/merge-renovate-upgrades.yaml @@ -19,7 +19,7 @@ jobs: steps: - name: "Auto-Merge" if: "${{ github.event.workflow_run.conclusion == 'success' }}" - uses: "ridedott/merge-me-action@v2.10.66" + uses: "ridedott/merge-me-action@v2.10.106" with: GITHUB_LOGIN: "renovate" GITHUB_TOKEN: "${{ secrets.LCTRS_BOT_TOKEN }}" diff --git a/.github/workflows/renew.yaml b/.github/workflows/renew.yaml index 82c949e..322c6d9 100644 --- a/.github/workflows/renew.yaml +++ b/.github/workflows/renew.yaml @@ -22,12 +22,12 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v4.1.1" + uses: "actions/checkout@v4.2.0" with: token: "${{ secrets.LCTRS_BOT_TOKEN }}" - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@2.29.0" + uses: "shivammathur/setup-php@2.31.1" with: coverage: "none" php-version: "${{ matrix.php-version }}" @@ -44,7 +44,7 @@ jobs: run: "php update-license.php" - name: "Commit modified files" - uses: "stefanzweifel/git-auto-commit-action@v5.0.0" + uses: "stefanzweifel/git-auto-commit-action@v5.0.1" with: commit_author: "lctrs-bot " commit_message: "license: update year" diff --git a/composer.json b/composer.json index 7a68703..b00b53e 100644 --- a/composer.json +++ b/composer.json @@ -22,22 +22,22 @@ "source": "https://github.com/Lctrs/circular-buffer" }, "require": { - "php": "~8.0.2 || ~8.1.0 || ~8.2.0" + "php": "~8.0.2 || ~8.1.0 || ~8.2.0 || ~8.3.0" }, "require-dev": { "doctrine/coding-standard": "12.0.0", - "ergebnis/composer-normalize": "2.31.0", - "ergebnis/license": "2.4.0", + "ergebnis/composer-normalize": "2.44.0", + "ergebnis/license": "2.5.0", "infection/infection": "0.26.19", "maglnet/composer-require-checker": "4.4.0", - "phpstan/extension-installer": "1.3.1", - "phpstan/phpstan": "1.10.57", - "phpstan/phpstan-deprecation-rules": "1.1.4", - "phpstan/phpstan-phpunit": "1.3.15", - "phpstan/phpstan-strict-rules": "1.5.2", - "phpunit/phpunit": "9.6.16", - "psalm/plugin-phpunit": "0.18.4", - "vimeo/psalm": "5.20.0" + "phpstan/extension-installer": "1.4.3", + "phpstan/phpstan": "1.12.5", + "phpstan/phpstan-deprecation-rules": "1.2.1", + "phpstan/phpstan-phpunit": "1.4.0", + "phpstan/phpstan-strict-rules": "1.6.1", + "phpunit/phpunit": "9.6.21", + "psalm/plugin-phpunit": "0.19.0", + "vimeo/psalm": "5.26.1" }, "autoload": { "psr-4": {