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.3.2 | v3.3.3  |
| github-tags | codecov/codecov-action | v3.1.4 | v3.1.6  |
| packagist   | infection/infection    | 0.27.8 | 0.27.10 |
| packagist   | react/socket           | 1.14.0 | 1.15.0  |
| github-tags | shivammathur/setup-php | 2.28.0 | 2.30.0  |
  • Loading branch information
renovate[bot] authored Mar 18, 2024
1 parent 3ec9ef0 commit 44ac6f5
Show file tree
Hide file tree
Showing 5 changed files with 182 additions and 258 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@v4"

- name: "Install PHP"
uses: "shivammathur/setup-php@2.28.0"
uses: "shivammathur/setup-php@2.30.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/[email protected].2"
uses: "actions/[email protected].3"
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"
Expand Down
6 changes: 3 additions & 3 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@v4"

- name: "Install PHP"
uses: "shivammathur/setup-php@2.28.0"
uses: "shivammathur/setup-php@2.30.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/[email protected].2"
uses: "actions/[email protected].3"
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"
Expand All @@ -58,4 +58,4 @@ jobs:
run: "make infection PHPUNIT_FLAGS=--coverage-clover=coverage.xml INFECTION_FLAGS=--logger-github"

- name: "Upload Code Coverage"
uses: "codecov/[email protected].4"
uses: "codecov/[email protected].6"
4 changes: 2 additions & 2 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@v4"

- name: "Install PHP"
uses: "shivammathur/setup-php@2.28.0"
uses: "shivammathur/setup-php@2.30.0"
with:
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1
Expand All @@ -38,7 +38,7 @@ jobs:
run: echo "::set-output name=dir::$(composer config cache-files-dir)"

- name: "Cache dependencies"
uses: "actions/[email protected].2"
uses: "actions/[email protected].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/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: "actions/checkout@v4"

- name: "Install PHP"
uses: "shivammathur/setup-php@2.28.0"
uses: "shivammathur/setup-php@2.30.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/[email protected].2"
uses: "actions/[email protected].3"
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }}"
Expand Down
Loading

0 comments on commit 44ac6f5

Please sign in to comment.