From 3b40753328a95b60624562cc7f580fd109083363 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 23 Apr 2024 23:19:49 +0000 Subject: [PATCH] Update all non-major dependencies | datasource | package | from | to | | ----------- | --------------------------- | ------- | ------ | | github-tags | actions/cache | v3.0.11 | v3.3.3 | | github-tags | actions/cache | v3.3.1 | v3.3.3 | | github-tags | codecov/codecov-action | v3.1.1 | v3.1.6 | | packagist | infection/infection | 0.26.19 | 0.28.1 | | packagist | lcobucci/di-builder | 7.2.1 | 7.4.0 | | packagist | phpstan/extension-installer | 1.2.0 | 1.3.1 | | github-tags | shivammathur/setup-php | 2.22.0 | 2.30.4 | | github-tags | shivammathur/setup-php | 2.24.0 | 2.30.4 | --- .github/workflows/backwards-compatibility.yml | 4 ++-- .github/workflows/coding-standards.yml | 2 +- .github/workflows/composer-json-lint.yml | 2 +- .github/workflows/mutation-tests.yml | 2 +- .github/workflows/phpunit.yml | 10 +++++----- .github/workflows/static-analysis.yml | 2 +- composer.json | 2 +- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/backwards-compatibility.yml b/.github/workflows/backwards-compatibility.yml index ea8c475b..17127e61 100644 --- a/.github/workflows/backwards-compatibility.yml +++ b/.github/workflows/backwards-compatibility.yml @@ -16,7 +16,7 @@ jobs: fetch-depth: 0 - name: "Install PHP" - uses: "shivammathur/setup-php@2.24.0" + uses: "shivammathur/setup-php@2.30.4" with: php-version: "8.1" ini-values: memory_limit=-1 @@ -29,7 +29,7 @@ jobs: run: echo "composer_cache_dir=$(composer global config cache-files-dir)" >> $GITHUB_OUTPUT - name: "Cache dependencies" - uses: "actions/cache@v3.3.1" + uses: "actions/cache@v3.3.3" with: path: ${{ steps.composer-cache.outputs.composer_cache_dir }} key: "php-8.1-bc-break-check-${{ hashFiles('.github/workflows/backwards-compatibility.yml') }}" diff --git a/.github/workflows/coding-standards.yml b/.github/workflows/coding-standards.yml index 0cfe46ad..4725ae25 100644 --- a/.github/workflows/coding-standards.yml +++ b/.github/workflows/coding-standards.yml @@ -36,7 +36,7 @@ jobs: run: echo "::set-output name=dir::$(composer config cache-files-dir)" - name: "Cache dependencies" - uses: "actions/cache@v3.0.11" + uses: "actions/cache@v3.3.3" with: path: ${{ steps.composer-cache.outputs.dir }} key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}" diff --git a/.github/workflows/composer-json-lint.yml b/.github/workflows/composer-json-lint.yml index f68843e2..6b4ca125 100644 --- a/.github/workflows/composer-json-lint.yml +++ b/.github/workflows/composer-json-lint.yml @@ -36,7 +36,7 @@ jobs: run: echo "::set-output name=dir::$(composer config cache-files-dir)" - name: "Cache dependencies" - uses: "actions/cache@v3.0.11" + uses: "actions/cache@v3.3.3" with: path: ${{ steps.composer-cache.outputs.dir }} key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}" diff --git a/.github/workflows/mutation-tests.yml b/.github/workflows/mutation-tests.yml index 962f3182..07374b9a 100644 --- a/.github/workflows/mutation-tests.yml +++ b/.github/workflows/mutation-tests.yml @@ -36,7 +36,7 @@ jobs: run: echo "::set-output name=dir::$(composer config cache-files-dir)" - name: "Cache dependencies" - uses: "actions/cache@v3.0.11" + uses: "actions/cache@v3.3.3" with: path: ${{ steps.composer-cache.outputs.dir }} key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}" diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index d3470d00..909e22e2 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -39,7 +39,7 @@ jobs: run: echo "::set-output name=dir::$(composer config cache-files-dir)" - name: "Cache dependencies" - uses: "actions/cache@v3.0.11" + uses: "actions/cache@v3.3.3" with: path: ${{ steps.composer-cache.outputs.dir }} key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}" @@ -95,7 +95,7 @@ jobs: run: echo "::set-output name=dir::$(composer config cache-files-dir)" - name: "Cache dependencies" - uses: "actions/cache@v3.0.11" + uses: "actions/cache@v3.3.3" with: path: ${{ steps.composer-cache.outputs.dir }} key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}" @@ -127,7 +127,7 @@ jobs: uses: "actions/checkout@v4" - name: "Install PHP" - uses: "shivammathur/setup-php@2.22.0" + uses: "shivammathur/setup-php@2.30.4" with: coverage: "xdebug" php-version: "${{ matrix.php-version }}" @@ -139,7 +139,7 @@ jobs: run: echo "::set-output name=dir::$(composer config cache-files-dir)" - name: "Cache dependencies" - uses: "actions/cache@v3.0.11" + uses: "actions/cache@v3.3.3" with: path: ${{ steps.composer-cache.outputs.dir }} key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}" @@ -165,4 +165,4 @@ jobs: run: "make phpunit PHPUNIT_FLAGS='--coverage-text --coverage-clover=coverage.xml'" - name: "Upload Coverage" - uses: "codecov/codecov-action@v3.1.1" + uses: "codecov/codecov-action@v3.1.6" diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index 73e4d60d..81e293ea 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -36,7 +36,7 @@ jobs: run: echo "::set-output name=dir::$(composer config cache-files-dir)" - name: "Cache dependencies" - uses: "actions/cache@v3.0.11" + uses: "actions/cache@v3.3.3" with: path: ${{ steps.composer-cache.outputs.dir }} key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}" diff --git a/composer.json b/composer.json index eb4a853b..afa60a81 100644 --- a/composer.json +++ b/composer.json @@ -22,7 +22,7 @@ "chimera/mapping": "^1.0.x-dev", "chimera/routing-mezzio": "^1.0.x-dev", "chimera/serialization-jms": "^1.0.x-dev", - "infection/infection": "^0.26", + "infection/infection": "^0.28", "lcobucci/coding-standard": "^11.0", "lcobucci/error-handling-middleware": "^1.4", "phpstan/extension-installer": "^1.2",