Skip to content

chore(deps): update workflows #304

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

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

chore(deps): update workflows #304

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 6, 2025

This PR contains the following updates:

Package Type Update Change
actions/cache action patch v4.2.0 -> v4.2.3
actions/download-artifact action minor v4.2.1 -> v4.3.0
actions/setup-java action patch v4.7.0 -> v4.7.1
actions/setup-node action minor v4.3.0 -> v4.4.0
actions/setup-python action minor v5.5.0 -> v5.6.0
github/codeql-action action patch v3.28.13 -> v3.28.17
ruby/setup-ruby action minor v1.229.0 -> v1.237.0
shivammathur/setup-php action minor 2.32.0 -> 2.33.0

Release Notes

actions/cache (actions/cache)

v4.2.3

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v4.2.2...v4.2.3

v4.2.2

Compare Source

What's Changed

[!IMPORTANT]
As a reminder, there were important backend changes to release v4.2.0, see those release notes and the announcement for more details.

Full Changelog: actions/cache@v4.2.1...v4.2.2

v4.2.1

Compare Source

What's Changed

[!IMPORTANT]
As a reminder, there were important backend changes to release v4.2.0, see those release notes and the announcement for more details.

New Contributors

Full Changelog: actions/cache@v4.2.0...v4.2.1

actions/download-artifact (actions/download-artifact)

v4.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: actions/download-artifact@v4.2.1...v4.3.0

actions/setup-java (actions/setup-java)

v4.7.1

Compare Source

What's Changed
Documentation changes
Dependency updates:

Full Changelog: actions/setup-java@v4...v4.7.1

actions/setup-node (actions/setup-node)

v4.4.0

Compare Source

What's Changed

Bug fixes:
Enhancement:
Dependency update:

New Contributors

Full Changelogactions/setup-node@v4...v4.4.0

actions/setup-python (actions/setup-python)

v5.6.0

Compare Source

What's Changed

Full Changelog: actions/setup-python@v5...v5.6.0

github/codeql-action (github/codeql-action)

v3.28.17

Compare Source

v3.28.16

Compare Source

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

3.28.16 - 23 Apr 2025

  • Update default CodeQL bundle version to 2.21.1. #​2863

See the full CHANGELOG.md for more information.

v3.28.15

Compare Source

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

3.28.15 - 07 Apr 2025

  • Fix bug where the action would fail if it tried to produce a debug artifact with more than 65535 files. #​2842

See the full CHANGELOG.md for more information.

v3.28.14

Compare Source

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

3.28.14 - 07 Apr 2025

  • Update default CodeQL bundle version to 2.21.0. #​2838

See the full CHANGELOG.md for more information.

ruby/setup-ruby (ruby/setup-ruby)

v1.237.0

Compare Source

What's Changed

Full Changelog: ruby/setup-ruby@v1.236.0...v1.237.0

v1.236.0

Compare Source

What's Changed

Full Changelog: ruby/setup-ruby@v1.235.0...v1.236.0

v1.235.0

Compare Source

What's Changed

Full Changelog: ruby/setup-ruby@v1.234.0...v1.235.0

v1.234.0

Compare Source

Full Changelog: ruby/setup-ruby@v1.233.0...v1.234.0

v1.233.0

Compare Source

What's Changed

Full Changelog: ruby/setup-ruby@v1.232.0...v1.233.0

v1.232.0

Compare Source

What's Changed

Full Changelog: ruby/setup-ruby@v1.231.0...v1.232.0

v1.231.0

Compare Source

What's Changed

Full Changelog: ruby/setup-ruby@v1.230.0...v1.231.0

v1.230.0

Compare Source

What's Changed

Full Changelog: ruby/setup-ruby@v1.229.0...v1.230.0

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

v2.33.0

Compare Source

Changelog

  • Added support for Arm Ubuntu runners ubuntu-24.04-arm and ubuntu-22.04-arm. (#​848)
jobs:
  run:
    runs-on: ubuntu-24.04-arm # or ubuntu-22.04-arm
    steps:
    - name: Setup PHP
      uses: shivammathur/setup-php@v2
      with:
        php-version: '8.4'
  • Dropped support for Ubuntu 20.04 (ubuntu-20.04) for both GitHub hosted and self-hosted runners. Please migrate your workflows to ubuntu-22.04 or ubuntu-24.04. (#​939)
    Ref: https://github.com/shivammathur/setup-php#github-hosted-runners

  • Improved support for installing PHPUnit around new releases. Now setup-php will fallback to the previous release till new release is available on the phpunit.de website after it is tagged. (#​913, #​938)

- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
    tools: phpunit
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
  env:
    TOOLS_DIR: '/tmp/tools'
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
    tools: composer-normalize
  • Updated the repository for PHP-CS-Fixer. (#​900)
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
    tools: php-cs-fixer
  • Added support for blackfire and ionCube extensions for PHP 8.4.

  • Improved support for phalcon and zephir_parser extensions.

  • Improved support for OCI extensions pdo_oci and oci8 on self-hosted runners. (#​929)

- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
    extensions: pdo_oci, oci8
  • Improved locking mechanism while fetching files on self-hosted runners. (#​912)

  • Fixed a warning on macOS while patching extensions.

  • Fixed linking hiredis library during relay setup.

- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.4'
    extensions: relay
  • Updated Node.js dependencies.

Thanks @​deguif, @​DanielEScherzer, @​voodooism, @​hms5232, and @​jg-development for the contributions 🎉

Thanks @​complex-gmbh and @​WorkOfStan for the sponsorship ❤️

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

Follow for updates

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


Configuration

📅 Schedule: Branch creation - "before 6am on monday" in timezone Pacific/Auckland, 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Apr 6, 2025
@renovate renovate bot force-pushed the renovate/workflows branch from d1c24ee to dde0ec6 Compare April 7, 2025 11:20
@renovate renovate bot changed the title chore(deps): update actions/cache action to v4.2.3 chore(deps): update workflows Apr 7, 2025
@renovate renovate bot force-pushed the renovate/workflows branch 4 times, most recently from fb49d94 to 851eb63 Compare April 14, 2025 07:43
@renovate renovate bot force-pushed the renovate/workflows branch 4 times, most recently from d9a9242 to 7ed1d2f Compare April 18, 2025 09:44
@renovate renovate bot force-pushed the renovate/workflows branch 5 times, most recently from c05f095 to f161ba7 Compare April 26, 2025 14:46
@renovate renovate bot force-pushed the renovate/workflows branch 2 times, most recently from ebcc16b to 1863210 Compare May 1, 2025 11:12
@renovate renovate bot force-pushed the renovate/workflows branch from 1863210 to 0491b0c Compare May 2, 2025 10:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants