Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update shivammathur/setup-php action to v2.30.0 #188

Merged
merged 1 commit into from Mar 20, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 28, 2022

Mend Renovate

This PR contains the following updates:

Package Type Update Change
shivammathur/setup-php action minor 2.21.2 -> 2.30.0

Release Notes

shivammathur/setup-php (shivammathur/setup-php)

v2.30.0

Compare Source

Changelog
  • Added support to set custom composer timeout (#​811)
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
  env:
    COMPOSER_PROCESS_TIMEOUT: 300

For the complete list of changes, please refer to the Full Changelog

Follow for updates

setup-php reddit setup-php twitter setup-php status

v2.29.0

Compare Source

Changelog

  • Added support for 'lowest' and 'highest' aliases to specify PHP versions. #​794
    • The lowest alias installs the lowest actively supported version in the PHP project.
    • The 'highest' alias is equivalent to the 'latest' alias, so it installs the latest supported stable PHP version.
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: lowest # or highest
  • Added support for thread-safe builds on macOS. This completes the support for thread-safe builds on all supported platforms.
- name: Setup ZTS PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
  env:
    phpts: zts
  • Updated documentation for support to read the PHP version from composer.lock and composer.json files.
    • If php-version and php-version-file inputs are not specified, then it can read the php version from platform-overrides.php value in composer.lock or config.platform.php value from composer.json. #​800
- name: Checkout
  uses: actions/checkout@v4
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  • Switched to the new PHPCSStandards/PHP_CodeSniffer repository for builds of phpcs and phpcbf tools. #​809
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
    tools: phpcs, phpcbf
  • Marked v1 version of the action as completely unsupported, it will receive no updates, please upgrade to v2, if not done already.

  • Fixed installing extensions on Windows for PHP 8.1 by reverting the version bump for minimum stability. #​807

  • Fixed building extensions on PHP 8.4 that used backward compatibility headers from ext/standard to use ext/random/php_random.h header.

  • Improved support for phalcon to install the extension when specified without the version number. #​796

- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
    extensions: phalcon
  • Updated codeql workflow to use v3 versions of codeql actions. #​803

  • Updated docs workflow to use actions/download-artifact@v4 and actions/upload-artifact@v4. #​804, #​805

  • Updated Node.js dependencies.

Merged Pull Requests

For the complete list of changes, please refer to the Full Changelog

Thanks @​dr5hn, @​tighten, @​ZeekInteractive, @​acelaya, and @​fulopattila122 for the sponsorship ❤️

Follow for updates

setup-php reddit setup-php twitter setup-php status

v2.28.0

Compare Source

Changelog

  • Specifying 8.3 in php-version now installs a stable build of PHP 8.3.
- name: Setup PHP 8.3
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
  • Specifying latest in php-version now installs PHP 8.3 as well.
- name: Setup Latest PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: 'latest'
  • Specifying nightly in php-version now installs PHP 8.4.
- name: Setup Nightly PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: 'nightly'
- name: Setup PHP with intl
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
    extensions: intl-74.1
  • Added support to specify zts in phpts environment variable instead of ts to set up thread-safe PHP on Linux and Windows.
- name: Setup PHP 8.3 (ZTS)
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
  env:
    phpts: zts
  • Fixed support for debug builds. (#​784)
- name: Setup PHP 8.3
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
  env:
    debug: true
  • Added support for cached builds for PHP 8.3, PHP 8.4, and zts builds of all versions of PHP 5.6 and newer on Ubuntu GitHub Hosted environments. This should reduce the time it takes to set up these PHP versions.

  • Added swoole to the builds cache for GitHub-hosted environments for PHP 7.2 and newer.

- name: Setup PHP 8.3
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
    extensions: swoole
  • Added PHP 8.3 and PHP 8.4 to the extension lists in the wiki. (#​787).

  • PHP 8.0 is now marked as End of life and PHP 8.1 is now marked as Security fixes only in README.
    See PHP Support in README.

  • Fixed support for Blackfire extension. The action now disabled Xdebug and pcov extensions by default when blackfire is specified in extensions input.

- name: Setup PHP with blackfire extension
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
    extensions: blackfire
  • Fixed support for grpc_php_plugin when installed along with protoc on macOS.
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
    tools: protoc, grpc_php_plugin
  • Fixed support for geos extension on PHP 8.3.
- name: Setup PHP with geos extension
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
    extensions: geos
  • Fixed support for event extension on macOS to use openssl@3 formula.
- name: Setup PHP with geos extension
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
    extensions: event
  • Update Node.js dependencies.

Merged Pull Requests

For the complete list of changes, please refer to the Full Changelog

Follow for updates

setup-php reddit setup-php twitter setup-php status

v2.27.1

Compare Source

Changelog
  • Fixed updating PHP dependencies after formulae in homebrew/core tap have been sharded into directories with prefixes. (#​780)

  • Update actions/setup-node from v3 to v4 in the node workflow.

  • Update Node.js dependencies.

For the complete list of changes, please refer to the Full Changelog

Follow for updates

setup-php reddit setup-php twitter setup-php status

v2.27.0

Compare Source

Changelog

  • Tools box and php-scoper can now be installed easily using the tools input. (#​776)
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.2'
    tools: box, php-scoper
  • Added support for macOS 14.x Sonoma and dropped support for macOS 11.x Big Sur following a three-year support cycle that Apple follows for macOS.

  • We now set keepAlive in https agent to false in fetch.ts. After Node 19 it is set to true by default. This prevented the node process from exiting until timeout after the action run was completed. (#​773, #​777) - Ref

  • Fixed support for couchbase extension for PHP 7.4.

- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '7.4'
    extensions: couchbase
  • Fixed a warning when find was run without checking if the path exists on macOS.

  • Fixed checking for existing PHP installations on macOS on self-hosted environments.

  • Fixed adding tools in case /usr/local/bin directory was missing on self-hosted environments.

  • Bumped Node.js dependencies.

Merged Pull Requests

New Contributors

Full Changelog

For the complete list of changes, please refer to the Full Changelog: 2.26.0...2.27.0.

Thanks @​tillkruss for the sponsorship ❤️

Follow for updates

setup-php reddit setup-php twitter setup-php status

v2.26.0

Compare Source

Changelog
Microsoft SQL Server extensions. (#​758, #​766)

The latest supported version of sqlsrv and pdo_sqlsrv for the PHP version will be installed.
Also, on Windows, these extensions will be installed from microsoft/msphpsql GitHub releases and will fallback to pecl.

- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.2'
    extensions: sqlsrv, pdo_sqlsrv
PHP 8.4 Support (#​762)

Added support for PHP 8.4.0-dev from the master branch of php/php-src for all supported OS.
Note: PHP 8.3.0-dev is now built from the new PHP-8.3 branch.

- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
Fixes
Blackfire Player

Resolved issues affecting the blackfire-player on Linux and macOS. It now installs the uuid extension that is required for the tool.
Dropped support for it on Windows as uuid extension is not available for the OS.

- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    tools: blackfire-player
Updates
Update actions/checkout

Updated the use of actions/checkout to v4 in the documentation and workflows.

- name: Checkout
  uses: actions/checkout@v4
Update Node.js Version

Note: Node.js 16 reached End-of-Life on 2023-09-11 (Ref).

Updated action.yml to use the node20 binary. If you use setup-php on a self-hosted runner, please make sure it is v2.308.0 or newer to use this release or the major version tag v2.

Node.js Dependencies

Bumped Node.js dependencies.

Merged Pull Requests
New Contributors
Full Changelog

For the complete list of changes, please refer to the Full Changelog: 2.25.5...2.26.0.

Follow for updates

setup-php reddit setup-php twitter setup-php status

v2.25.5

Compare Source

Changelog

  • Added support for castor in tools input. #​746
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.2'
    tools: castor
  • Fixed support for self-hosted Debian 12 environments.

  • Fixed support for self-hosted environments using DEB822-STYLE .sources files.

  • Fixed re-enabling opcache extension on macOS. #​749

  • Updated Node.js dependencies.

New Contributors

Full Changelog: shivammathur/setup-php@2.25.4...2.25.5

Follow for updates

setup-php reddit setup-php twitter setup-php status

v2.25.4

Compare Source

Changelog

  • Fixed regression in 2.25.3 in PHPUnit installation by specifying major or major.minor version in the tools input. #​743

  • Fixed fs import in utls.test.ts.

  • Updated Node.js dependencies.

Full Changelog: shivammathur/setup-php@2.25.3...2.25.4

Follow for updates

setup-php reddit setup-php twitter setup-php status

v2.25.3

Compare Source

Changelog
  • Added support for zts intl builds for all supported ICU versions. #​739, shivammathur/icu-intl@d6ee42c.

  • Added docker to the shivammathur/node images. #​742

  • Fixed regression in support for Zend extensions installed using PECL. #​738

  • Fixed PHPUnit and phpcpd support to set up versions compatible with the PHP version. #​732

  • Fixed support for nektos/act to run the action in self-hosted mode when using the tool. #​742

  • Fixed parsing versions in tools input. #​734

  • Updated Node.js dependencies.

Full Changelog: shivammathur/setup-php@2.25.2...2.25.3

New Contributors

Thanks @​ramsey and @​pxlrbt for the sponsorship ❤️

Follow for updates

setup-php reddit setup-php twitter setup-php status

v2.25.2

Compare Source

Changelog
  • Improved PHP builds cache for GitHub Actions Ubuntu environments.
  • Fixed support for PECL extensions in extensions input with version. #​725
  • Updated memcache extension to 8.2 in the builds cache for GitHub Actions Ubuntu environments for PHP 8.0 and above. #​725
  • Fixed a typo in the strategy of the sage example by @​yassinehamouten in https://github.com/shivammathur/setup-php/pull/726
  • Updated Node.js dependencies.
New Contributors

Full Changelog: shivammathur/setup-php@2.25.1...2.25.2

Follow for updates

setup-php reddit setup-php twitter setup-php status

v2.25.1

Compare Source

Changelog
  • Fixed regression in support for event extension in 2.25.0 (#​722).
  • Added fallback to GitHub API in Add-DebugSymbols on Windows.
  • Updated Node.js dependencies.

Full Changelog: shivammathur/setup-php@2.25.0...2.25.1

Follow for updates

setup-php reddit setup-php twitter setup-php status

v2.25.0

Compare Source

Changelog
  • Dropped support for Ubuntu 18.04. (#​717)
    Please use ubuntu-22.04 or ubuntu-20.04 runners.
- runs-on: ubuntu-18.04
+ runs-on: ubuntu-22.04

##### or

- runs-on: ubuntu-18.04
+ runs-on: ubuntu-20.04
  • Added support for php-version-file input to read the input PHP version from a file Docs. (#​690)

    Example: If you have a file .php-version in your file structure with the PHP version as its content, you can use the php-version-file input.

- name: Checkout
  uses: actions/checkout@v3

- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version-file: .php-version
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    extensions: intl-73.1
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    extensions: snmp, uuid
  • Added retry logic across Windows to decrease the network failure rate. (#​700, #​711)

  • Switched to using phpenmod script to enable extensions on Linux.

  • Switched to using Write-Error instead of Exit on Windows as that did not stop the workflow on errors. (#​709)

  • Improved support for relay extension. #​719

  • Fixed support for zts build of zephir_parser extension. #​701

  • Fixed parameters in the xargs call. #​712

  • Fixed minor shellcheck error.

  • Fixed the wrapper used to install Debian packages to check for broken package failures.

  • Fixed the JIT config set up to match the docs.

  • Updated Node.js dependencies.

Full Changelog: shivammathur/setup-php@2.24.0...2.25.0

Contributions
New Contributors

Thanks! for the contribution 🎉

Follow for updates

setup-php reddit setup-php twitter setup-php status

v2.24.0

Compare Source

Support Ukraine

#StandWithUkraine


  • Added support for relay extension on Linux and macOS for PHP 7.4 to 8.2. (#​682)
- name: Install PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.2'
    extensions: relay # or specific version like relay-0.4.6 
  env:
    RELAY_KEY: ${{ secrets.RELAY_KEY }}
    RELAY_ENVIRONMENT: development
    RELAY_EVICTION_POLICY: lru
    RELAY_MAX_MEMORY: 256M
  • Improved support for zephir_parser extension. (#​681)
- name: Install PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.2'
    extensions: zephir_parser
  • Fixed support for self-hosted environments with outdated package lists. (#​688)

  • Fixed logs for coverage extensions on PHP 8.3. (#​685)

  • Fixed PECL options parsing on macOS. (#​680)

  • Fixed support for blackfire-player.

  • Fixed fetching phalcon release asset URL on Windows.

  • Fixed protoc support to account for release versions in major.minor format.

  • Change the choco install script URL to avoid redirecting.

  • Refactored function names in scripts for tools and extensions with custom support.

  • Updated Node.js dependencies.


Full Changelog: shivammathur/setup-php@2.23.0...2.24.0

Thanks! @​tillkruss, @​quick-order, @​jobbsy-dev, and @​DracoBlue for the sponsorship ❤️

Thanks! @​Rotzbua for the contribution 🎉

Follow for updates

setup-php reddit setup-php twitter setup-php status

v2.23.0

Compare Source

Support Ukraine

#StandWithUkraine


  • Added support for nightly builds of PHP 8.3.
    Note: Specifying nightly as the php-version now will set up PHP 8.3.
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
  • PHP 8.2 is now stable on setup-php. #​673
    Notes:
    • Specifying latest or 8.x as the php-version now will set up PHP 8.2.
    • Except ubuntu-22.04, all GitHub runners now have PHP 8.2 as the default version.
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.2'
  • Added support for thread-safe builds of PHP on Linux. #​651
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.2'
  env:
    phpts: ts

Full Changelog: shivammathur/setup-php@2.22.0...2.23.0

Merry Christmas and happy holidays! 🎄🎁

Thanks! @​jrfnl and @​flavioheleno for the contributions 🎉

Follow for updates

setup-php reddit setup-php twitter setup-php status

v2.22.0

Compare Source

Support Ukraine

#StandWithUkraine


- name: Setup PHP with debugging symbols
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.1'
  env:
    debug: true 
- name: Setup PHP with intl
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.1'
    extensions: intl-72.1
  • Existing PHP version on GitHub actions Ubuntu images is now updated if ppa:ondrej/php is missing regardless of the update environment variable. (actions/runner-images#6331).

  • Environment variable COMPOSER_NO_AUDIT is now set by default. If you would like to run the composer audit in your workflows, please add a step with composer audit command. (#​635, #​636)

- name: Composer audit
  run: composer audit
  • Switched to GITHUB_OUTPUT environment file for setting up outputs. If you are using setup-php on self-hosted runners, please update it to 2.297.0 or greater. More Info (#​654)

  • Updated sqlsrv and pdo_sqlsrv version to 5.10.1 for PHP 7.0 and above on Linux.

  • Improved support for phalcon5 extension to set up the latest stable version.

  • Improved symfony-cli support to fetch the artifact URL from the brew tap on Linux. (#​641, #​652, #​653)

  • Improved fetching brew taps on Linux to avoid brew's overhead.

  • Fixed installing extension packages on self-hosted Linux runners. (#​642)

  • Fixed support for couchbase and firebird extensions after GitHub release page changes.

  • Fixed support for older versions of laravel/pint. (#​647)

  • Updated Node.js dependencies.


Full Changelog: shivammathur/setup-php@2.21.2...2.22.0

Thanks! @​alcaeus and @​jderusse for the contributions 🎉

Follow for updates

setup-php reddit setup-php twitter setup-php status


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.


This change is Reviewable

@coveralls
Copy link

coveralls commented Oct 28, 2022

Coverage Status

coverage: 81.603% (-0.6%) from 82.178%
when pulling 08c4429 on renovate/shivammathur-setup-php-2.x
into ce72331 on master.

@coveralls
Copy link

Coverage Status

Coverage decreased (-0.04%) to 79.484% when pulling dc9e1b9 on renovate/shivammathur-setup-php-2.x into 35b2153 on master.

@sonarcloud
Copy link

sonarcloud bot commented Oct 28, 2022

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
No Duplication information No Duplication information

@renovate renovate bot changed the title Update shivammathur/setup-php action to v2.22.0 Update shivammathur/setup-php action to v2.24.0 Mar 16, 2023
@renovate renovate bot force-pushed the renovate/shivammathur-setup-php-2.x branch from dc9e1b9 to 775532c Compare March 16, 2023 17:24
@renovate renovate bot changed the title Update shivammathur/setup-php action to v2.24.0 Update shivammathur/setup-php action to v2.25.0 Apr 17, 2023
@renovate renovate bot force-pushed the renovate/shivammathur-setup-php-2.x branch from 775532c to 238de43 Compare April 17, 2023 03:39
@renovate renovate bot changed the title Update shivammathur/setup-php action to v2.25.0 Update shivammathur/setup-php action to v2.25.1 Apr 19, 2023
@renovate renovate bot force-pushed the renovate/shivammathur-setup-php-2.x branch from 238de43 to adf347b Compare April 19, 2023 06:00
@renovate renovate bot changed the title Update shivammathur/setup-php action to v2.25.1 Update shivammathur/setup-php action to v2.25.2 May 28, 2023
@renovate renovate bot force-pushed the renovate/shivammathur-setup-php-2.x branch from adf347b to 597172b Compare May 28, 2023 09:50
@renovate renovate bot changed the title Update shivammathur/setup-php action to v2.25.2 Update shivammathur/setup-php action to v2.25.3 Jun 12, 2023
@renovate renovate bot force-pushed the renovate/shivammathur-setup-php-2.x branch from 597172b to 082737b Compare June 12, 2023 13:40
@renovate renovate bot changed the title Update shivammathur/setup-php action to v2.25.3 Update shivammathur/setup-php action to v2.25.4 Jun 13, 2023
@renovate renovate bot force-pushed the renovate/shivammathur-setup-php-2.x branch from 082737b to 5676816 Compare June 13, 2023 01:40
@renovate renovate bot changed the title Update shivammathur/setup-php action to v2.25.4 Update shivammathur/setup-php action to v2.25.5 Jul 29, 2023
@renovate renovate bot force-pushed the renovate/shivammathur-setup-php-2.x branch from 5676816 to b5cfb57 Compare July 29, 2023 21:45
@sonarcloud
Copy link

sonarcloud bot commented Jul 29, 2023

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
No Duplication information No Duplication information

@renovate renovate bot changed the title Update shivammathur/setup-php action to v2.25.5 Update shivammathur/setup-php action to v2.26.0 Sep 14, 2023
@renovate renovate bot force-pushed the renovate/shivammathur-setup-php-2.x branch from b5cfb57 to 01bb86f Compare September 14, 2023 11:10
@sonarcloud
Copy link

sonarcloud bot commented Sep 14, 2023

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
No Duplication information No Duplication information

@renovate renovate bot changed the title Update shivammathur/setup-php action to v2.26.0 chore(deps): update shivammathur/setup-php action to v2.26.0 Sep 17, 2023
@renovate renovate bot changed the title chore(deps): update shivammathur/setup-php action to v2.26.0 chore(deps): update shivammathur/setup-php action to v2.27.0 Nov 1, 2023
@renovate renovate bot force-pushed the renovate/shivammathur-setup-php-2.x branch from 01bb86f to 7813470 Compare November 1, 2023 22:14
@renovate renovate bot changed the title chore(deps): update shivammathur/setup-php action to v2.27.0 chore(deps): update shivammathur/setup-php action to v2.27.1 Nov 7, 2023
@renovate renovate bot force-pushed the renovate/shivammathur-setup-php-2.x branch from 7813470 to 7fa3dc7 Compare November 7, 2023 11:08
@renovate renovate bot changed the title chore(deps): update shivammathur/setup-php action to v2.27.1 chore(deps): update shivammathur/setup-php action to v2.28.0 Nov 27, 2023
@renovate renovate bot force-pushed the renovate/shivammathur-setup-php-2.x branch from 7fa3dc7 to 58e6ee5 Compare November 27, 2023 13:35
Copy link

sonarcloud bot commented Nov 27, 2023

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
No Duplication information No Duplication information

@renovate renovate bot force-pushed the renovate/shivammathur-setup-php-2.x branch from 58e6ee5 to 0c239b4 Compare January 15, 2024 10:14
@renovate renovate bot changed the title chore(deps): update shivammathur/setup-php action to v2.28.0 chore(deps): update shivammathur/setup-php action to v2.29.0 Jan 15, 2024
Copy link

sonarcloud bot commented Jan 15, 2024

Quality Gate Passed Quality Gate passed

Kudos, no new issues were introduced!

0 New issues
0 Security Hotspots
No data about Coverage
No data about Duplication

See analysis details on SonarCloud

@renovate renovate bot force-pushed the renovate/shivammathur-setup-php-2.x branch from 0c239b4 to 08c4429 Compare March 1, 2024 11:02
@renovate renovate bot changed the title chore(deps): update shivammathur/setup-php action to v2.29.0 chore(deps): update shivammathur/setup-php action to v2.30.0 Mar 1, 2024
Copy link

sonarcloud bot commented Mar 1, 2024

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

Measures
0 Security Hotspots
No data about Coverage
No data about Duplication

See analysis details on SonarCloud

@voku voku merged commit a1333ac into master Mar 20, 2024
12 of 19 checks passed
@renovate renovate bot deleted the renovate/shivammathur-setup-php-2.x branch March 20, 2024 07:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants