[PR #773] [MERGED] chore(deps): Bump shivammathur/setup-php from 2.35.5 to 2.36.0 #782

Closed
opened 2026-02-26 06:32:08 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/nextcloud/twofactor_gateway/pull/773
Author: @dependabot[bot]
Created: 11/27/2025
Status: Merged
Merged: 11/27/2025
Merged by: @dependabot[bot]

Base: masterHead: dependabot/github_actions/shivammathur/setup-php-2.36.0


📝 Commits (1)

  • d69963b chore(deps): Bump shivammathur/setup-php from 2.35.5 to 2.36.0

📊 Changes

9 files changed (+9 additions, -9 deletions)

View changed files

📝 .github/workflows/appstore-build-publish.yml (+1 -1)
📝 .github/workflows/lint-php-cs.yml (+1 -1)
📝 .github/workflows/lint-php.yml (+1 -1)
📝 .github/workflows/openapi.yml (+1 -1)
📝 .github/workflows/phpunit-mysql.yml (+1 -1)
📝 .github/workflows/phpunit-pgsql.yml (+1 -1)
📝 .github/workflows/phpunit-sqlite-coverage.yml (+1 -1)
📝 .github/workflows/phpunit-sqlite.yml (+1 -1)
📝 .github/workflows/psalm.yml (+1 -1)

📄 Description

Bumps shivammathur/setup-php from 2.35.5 to 2.36.0.

Release notes

Sourced from shivammathur/setup-php's releases.

2.36.0

Changelog

  • Added support for PHP 8.5 stable release.
- name: Setup PHP 8.5 (stable)
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.5'
  • Added support for PHP 8.6.0-dev. Specifying 8.6 in the php-version input should now set up a nightly build from the master branch of php-src. (#1002)
- name: Setup PHP 8.6.0-dev
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.6'
  • Added support for pdo_ibm and ibm_db2 extensions.
- name: Setup PHP with pdo_ibm and ibm_db2 extensions
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.5'
    extensions: pdo_ibm, ibm_db2
  • Added support to install blackfire extension on PHP 8.5.
- name: Setup PHP with blackfire extension
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.5'
    extensions: blackfire
  • Improved support to detect the required libraries when building from source for common extensions. For example installing gnupg from source would install the required libgpgme library automatically. (#1021)
- name: Setup PHP with amqp extension
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.5'
    extensions: gnupg-1.5.4

... (truncated)

Commits
  • 44454db Fix check_lists in ppa.sh
  • 9d7558f Revert to using php-builder for PHP 8.3 and above for self-hosted
  • 7bf05c6 Update README
  • 5daa53f Fix shellcheck in darwin.sh
  • e8f032a Fix linking
  • f96e84a Bump version to 2.36.0
  • 4abbbd6 Fix build pdo_oci on macos for PHP 7.0
  • a19278e Update actions/checkout to v6
  • 4364ed4 Merge pull request #1030 from shivammathur/dependabot/github_actions/develop/...
  • 8dcd37f Improve macos php setup
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

Dependabot will merge this PR once CI passes on it, as requested by @nextcloud-command.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/nextcloud/twofactor_gateway/pull/773 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 11/27/2025 **Status:** ✅ Merged **Merged:** 11/27/2025 **Merged by:** [@dependabot[bot]](https://github.com/apps/dependabot) **Base:** `master` ← **Head:** `dependabot/github_actions/shivammathur/setup-php-2.36.0` --- ### 📝 Commits (1) - [`d69963b`](https://github.com/nextcloud/twofactor_gateway/commit/d69963b7bcf2a992a17665cb9d02bb4ec3349dfd) chore(deps): Bump shivammathur/setup-php from 2.35.5 to 2.36.0 ### 📊 Changes **9 files changed** (+9 additions, -9 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/appstore-build-publish.yml` (+1 -1) 📝 `.github/workflows/lint-php-cs.yml` (+1 -1) 📝 `.github/workflows/lint-php.yml` (+1 -1) 📝 `.github/workflows/openapi.yml` (+1 -1) 📝 `.github/workflows/phpunit-mysql.yml` (+1 -1) 📝 `.github/workflows/phpunit-pgsql.yml` (+1 -1) 📝 `.github/workflows/phpunit-sqlite-coverage.yml` (+1 -1) 📝 `.github/workflows/phpunit-sqlite.yml` (+1 -1) 📝 `.github/workflows/psalm.yml` (+1 -1) </details> ### 📄 Description Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.35.5 to 2.36.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/shivammathur/setup-php/releases">shivammathur/setup-php's releases</a>.</em></p> <blockquote> <h2>2.36.0</h2> <h2>Changelog</h2> <ul> <li>Added support for PHP 8.5 stable release.</li> </ul> <pre lang="yml"><code>- name: Setup PHP 8.5 (stable) uses: shivammathur/setup-php@v2 with: php-version: '8.5' </code></pre> <ul> <li>Added support for PHP 8.6.0-dev. Specifying <code>8.6</code> in the <code>php-version</code> input should now set up a nightly build from the master branch of <code>php-src</code>. (<a href="https://redirect.github.com/shivammathur/setup-php/issues/1002">#1002</a>)</li> </ul> <pre lang="yml"><code>- name: Setup PHP 8.6.0-dev uses: shivammathur/setup-php@v2 with: php-version: '8.6' </code></pre> <ul> <li>Added support for <code>pdo_ibm</code> and <code>ibm_db2</code> extensions.</li> </ul> <pre lang="yml"><code>- name: Setup PHP with pdo_ibm and ibm_db2 extensions uses: shivammathur/setup-php@v2 with: php-version: '8.5' extensions: pdo_ibm, ibm_db2 </code></pre> <ul> <li>Added support to install <code>blackfire</code> extension on PHP 8.5.</li> </ul> <pre lang="yml"><code>- name: Setup PHP with blackfire extension uses: shivammathur/setup-php@v2 with: php-version: '8.5' extensions: blackfire </code></pre> <ul> <li>Improved support to detect the required libraries when building from source for common extensions. For example installing <code>gnupg</code> from source would install the required <code>libgpgme</code> library automatically. (<a href="https://redirect.github.com/shivammathur/setup-php/issues/1021">#1021</a>)</li> </ul> <pre lang="yml"><code>- name: Setup PHP with amqp extension uses: shivammathur/setup-php@v2 with: php-version: '8.5' extensions: gnupg-1.5.4 </code></pre> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/shivammathur/setup-php/commit/44454db4f0199b8b9685a5d763dc37cbf79108e1"><code>44454db</code></a> Fix check_lists in ppa.sh</li> <li><a href="https://github.com/shivammathur/setup-php/commit/9d7558f1af26b0050076999a645278579e58d1c9"><code>9d7558f</code></a> Revert to using php-builder for PHP 8.3 and above for self-hosted</li> <li><a href="https://github.com/shivammathur/setup-php/commit/7bf05c6b704e0b9bfee22300130a31b5ea68d593"><code>7bf05c6</code></a> Update README</li> <li><a href="https://github.com/shivammathur/setup-php/commit/5daa53ffa183c723433a1502218a0a06f3884327"><code>5daa53f</code></a> Fix shellcheck in darwin.sh</li> <li><a href="https://github.com/shivammathur/setup-php/commit/e8f032a051209c16c388d3c9c2594af51f33ba13"><code>e8f032a</code></a> Fix linking</li> <li><a href="https://github.com/shivammathur/setup-php/commit/f96e84adbb1ce1fa6990d50e1f533e53a17fec8d"><code>f96e84a</code></a> Bump version to 2.36.0</li> <li><a href="https://github.com/shivammathur/setup-php/commit/4abbbd607536b4e78c322563c51bd6071e53da1d"><code>4abbbd6</code></a> Fix build pdo_oci on macos for PHP 7.0</li> <li><a href="https://github.com/shivammathur/setup-php/commit/a19278e75f9d44c43ae947ba203ba056a60a9c77"><code>a19278e</code></a> Update actions/checkout to v6</li> <li><a href="https://github.com/shivammathur/setup-php/commit/4364ed4a15b5c72ce5b837d0a999d4da4db19fdc"><code>4364ed4</code></a> Merge pull request <a href="https://redirect.github.com/shivammathur/setup-php/issues/1030">#1030</a> from shivammathur/dependabot/github_actions/develop/...</li> <li><a href="https://github.com/shivammathur/setup-php/commit/8dcd37f7d4dc910a8eb674710642737fd5cb68a6"><code>8dcd37f</code></a> Improve macos php setup</li> <li>Additional commits viewable in <a href="https://github.com/shivammathur/setup-php/compare/bf6b4fbd49ca58e4608c9c89fba0b8d90bd2a39f...44454db4f0199b8b9685a5d763dc37cbf79108e1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=shivammathur/setup-php&package-manager=github_actions&previous-version=2.35.5&new-version=2.36.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) Dependabot will merge this PR once CI passes on it, as requested by @nextcloud-command. [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 06:32:08 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/twofactor_gateway-nextcloud#782
No description provided.