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

Update shivammathur/setup-php action to v2.30.4 #130

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 17, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
shivammathur/setup-php action minor 2.24.0 -> 2.30.4

Release Notes

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

v2.30.4

Compare Source

Changelog

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.30.3

Compare Source

Changelog
  • Fixed reading extension directory for PHP 8.4 on macOS.

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.30.2

Compare Source

Changelog

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.30.1

Compare Source

Changelog
  • Improved updating Homebrew core tap on macOS using a retry logic.

  • Fixed support for phalcon on Windows.

  • Fixed support for OCI extensions for PHP 8.4 on Linux and macOS.

  • Fixed support for sqlsrv and pdo_sqlsrv on PHP 8.0.

  • Fixed type error on Windows in Get-File function.

  • Minified the release file dist/index.js file generated by vercel/ncc.

  • Updated pre-installed PHP versions for GitHub runners in the README.

  • Updated 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.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


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

@github-actions
Copy link

github-actions bot commented Apr 17, 2023

Coverage Status

Coverage: 88.112% (-1.1%) from 89.237% when pulling e215688 on renovate/shivammathur-setup-php-2.x into eaea456 on master.

@github-actions
Copy link

Coverage Status

Coverage: 88.677% (-0.6%) from 89.237% when pulling 03ec1db on renovate/shivammathur-setup-php-2.x into eaea456 on master.

@codecov
Copy link

codecov bot commented Apr 17, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 90.45%. Comparing base (e88173f) to head (770a75b).

❗ Current head 770a75b differs from pull request most recent head d72aea6. Consider uploading reports for the commit d72aea6 to get more accurate results

Additional details and impacted files
@@            Coverage Diff            @@
##             master     #130   +/-   ##
=========================================
  Coverage     90.45%   90.45%           
  Complexity     1138     1138           
=========================================
  Files            39       39           
  Lines          3196     3196           
=========================================
  Hits           2891     2891           
  Misses          305      305           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@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 03ec1db to e215688 Compare April 19, 2023 05:17
@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 e215688 to d98cc9c Compare May 28, 2023 09:48
@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 d98cc9c to 05397f3 Compare June 12, 2023 12:42
@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 12, 2023
@renovate renovate bot force-pushed the renovate/shivammathur-setup-php-2.x branch from 05397f3 to 2f24563 Compare June 12, 2023 23:25
@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 2f24563 to d7c6af0 Compare July 29, 2023 22:35
@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 d7c6af0 to da835ba Compare September 14, 2023 09:40
@renovate renovate bot changed the title Update shivammathur/setup-php action to v2.26.0 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 da835ba to 12a1fc2 Compare November 1, 2023 21:52
@renovate renovate bot changed the title Update shivammathur/setup-php action to v2.27.0 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 12a1fc2 to 2d00c70 Compare November 7, 2023 11:02
@renovate renovate bot changed the title Update shivammathur/setup-php action to v2.27.1 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 2d00c70 to dc4d948 Compare November 27, 2023 15:27
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 changed the title Update shivammathur/setup-php action to v2.28.0 Update shivammathur/setup-php action to v2.29.0 Jan 15, 2024
@renovate renovate bot force-pushed the renovate/shivammathur-setup-php-2.x branch from dc4d948 to 5361f86 Compare January 15, 2024 11:17
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 changed the title Update shivammathur/setup-php action to v2.29.0 Update shivammathur/setup-php action to v2.30.0 Mar 1, 2024
@renovate renovate bot force-pushed the renovate/shivammathur-setup-php-2.x branch from 5361f86 to be682ce Compare March 1, 2024 13:56
@renovate renovate bot force-pushed the renovate/shivammathur-setup-php-2.x branch from be682ce to eaf2e3f Compare March 25, 2024 11:19
@renovate renovate bot changed the title Update shivammathur/setup-php action to v2.30.0 Update shivammathur/setup-php action to v2.30.1 Mar 25, 2024
@renovate renovate bot force-pushed the renovate/shivammathur-setup-php-2.x branch from eaf2e3f to 770a75b Compare March 31, 2024 00:45
@renovate renovate bot changed the title Update shivammathur/setup-php action to v2.30.1 Update shivammathur/setup-php action to v2.30.2 Mar 31, 2024
@renovate renovate bot force-pushed the renovate/shivammathur-setup-php-2.x branch from 770a75b to 86e85fe Compare April 21, 2024 18:30
@renovate renovate bot changed the title Update shivammathur/setup-php action to v2.30.2 Update shivammathur/setup-php action to v2.30.3 Apr 21, 2024
@renovate renovate bot force-pushed the renovate/shivammathur-setup-php-2.x branch from 86e85fe to d72aea6 Compare April 24, 2024 01:03
@renovate renovate bot changed the title Update shivammathur/setup-php action to v2.30.3 Update shivammathur/setup-php action to v2.30.4 Apr 24, 2024
Copy link

sonarcloud bot commented Apr 24, 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

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

0 participants