Update GitHub Actions non-major dependencies - #1125
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
| datasource | package | from | to | | ----------- | ----------------------------- | ------ | ------ | | github-tags | actions/setup-java | v5.6.0 | v5.7.0 | | github-tags | lycheeverse/lychee-action | v2.0.0 | v2.9.0 | | github-tags | shivammathur/cache-extensions | 1.0.0 | 1.14.6 | | github-tags | shivammathur/setup-php | 2.0.0 | 2.37.2 | | github-tags | zizmorcore/zizmor-action | v0.6.1 | v0.6.2 |
Codecov Report✅ All modified and coverable lines are covered by tests.
@@ Coverage Diff @@
## 8.x #1125 +/- ##
=============================================
- Coverage 87.78% 40.01% -47.77%
Complexity 1489 1489
=============================================
Files 146 146
Lines 4183 4168 -15
=============================================
- Hits 3672 1668 -2004
- Misses 511 2500 +1989 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v5.6.0→v5.7.0v2→v2.9.0v1→1.14.61.15.0v2→2.37.2v0.6.1→v0.6.2Release Notes
actions/setup-java (actions/setup-java)
v5.7.0Compare Source
lycheeverse/lychee-action (lycheeverse/lychee-action)
v2.9.0Compare Source
Summary
This release updates the default lychee version from
v0.23.0tov0.24.2.The main reason for this release is compatibility with the new lychee
0.24.xrelease artifacts. Starting with lycheev0.24.0, the archive layout changed, and thelycheebinary may now be packaged inside a subdirectory.lychee-actionnow detects that layout automatically, so users can upgrade without changing their workflows.If you use:
you will get the new version once the floating
v2tag has been updated. If you pin exact versions, update to:What’s new from lychee
v0.24.xBetter diagnostics
lychee now reports line and column numbers for detected links. This makes broken link reports easier to act on, especially in larger documentation sites or generated reports.
Text fragment checking
lychee can now check URL text fragments, such as links containing
#:~:text=.... This helps catch links that point to a valid page but no longer points to the intended highlighted text.Sitemap support
lychee can now read
sitemap.xmlinputs. This is useful for checking published websites or generated documentation sites where the sitemap is the easiest source of URLs to validate.JUnit output
lychee now supports JUnit output. This makes it easier to integrate link checking results with CI systems and test reporting tools that understand JUnit XML.
Redirect and remap visibility
lychee can now show redirects and remaps more clearly. This helps explain why a URL was checked as a different final URL and makes debugging link-checking behavior easier.
Multiple config files
lychee now supports multiple configuration files and expanded config handling. This is useful for repositories that split documentation, website, or package-specific link-checking settings.
Timeout handling
lychee can now accept timeouts explicitly. This gives users more control over how strict their link checks should be for flaky or slow endpoints.
Fixes and reliability improvements
Fixed lychee
0.24.xarchive compatibilitylychee-actionnow handles the new lychee release archive layout by detecting whether thelycheebinary is inside a subdirectory.This fixes compatibility with lychee
0.24.x.More stable installation path
The action now installs lychee into
$RUNNER_TEMP/lychee/bininstead of$HOME.This avoids failures on runners where
$HOMEdiffers between composite action steps. In those environments, the action could add one directory toPATHbut install the binary somewhere else, causinglychee: command not found.Safer automatic lychee version updates
The workflow that checks for new lychee releases now guards against
nullrelease versions before creating update PRs. This prevents invalid automated PRs such as “Update lycheeVersion to null”.Dependency updates
actions/checkoutfromv6tov7actions/cachefromv5tov6Upstream lychee changelog
For the full lychee changelog, see:
What’s Changed
$RUNNER_TEMPinstead of$HOMEby @mre in #338Full Changelog: lycheeverse/lychee-action@v2.8.0...v2.9.0
v2.8.0Compare Source
What's Changed
--root-dirinstead of the deprecated--baseby @mre in #315New Contributors
Full Changelog: lycheeverse/lychee-action@v2.7.0...v2.8.0
v2.7.0: Version 2.7.0Compare Source
Breaking changes
If you're using
--base, you must now provide either a URL (with scheme) or an absolute local path. Seelychee --helpfor more information. If you want to resolve root-relative links in local files, also see--root-dir.What's Changed
See https://github.com/lycheeverse/lychee/releases/tag/lychee-v0.21.0 for the lychee changelog.
Full Changelog: lycheeverse/lychee-action@v2...v2.7.0
v2.6.1: Version 2.6.1Compare Source
What's Changed
Full Changelog: lycheeverse/lychee-action@v2...v2.6.1
v2.6.0: Version 2.6.0Compare Source
What's Changed
Full Changelog: lycheeverse/lychee-action@v2...v2.6.0
v2.5.0: Version 2.5.0Compare Source
Summary
Most notably with this release the deprecated
--exclude-mailflag was removed and the behavior of the--acceptflag was updated. Previously, status codes such as 200 OK were always accepted. Now they are only accepted by default. This means providing the argument--accept 201now rejects status code 200 OK.What's Changed
Full Changelog: lycheeverse/lychee-action@v2...v2.5.0
v2.4.1: Version 2.4.1Compare Source
What's Changed
lycheeversion check by @mondeja in #288Full Changelog: lycheeverse/lychee-action@v2...v2.4.1
v2.4.0: Version 2.4.0Compare Source
What's Changed
lychee now has a new task output, which allows to track which links got fixed more easily.
It looks like this:
[test.html]:
Each broken link has a checkbox that can be ticked off once fixed. Credit goes to @Arteiii for the idea and the implementation.
See #274 for more information.
Update To latest lychee Release by @Arteiii in #279
Add
workingDirectoryargument by @mre in #283New Contributors
Full Changelog: lycheeverse/lychee-action@v2...v2.4.0
v2.3.0: Version 2.3.0Compare Source
What's Changed
New Contributors
Full Changelog: lycheeverse/lychee-action@v2...v2.3.0
v2.2.0: Version 2.2.0Compare Source
What's Changed
New Contributors
Full Changelog: lycheeverse/lychee-action@v2...v2.2.0
v2.1.0: Version 2.1.0Compare Source
What's Changed
failIfEmptyby @LitoMore in #261New Contributors
Full Changelog: lycheeverse/lychee-action@v2...v2.1.0
v2.0.2: Version 2.0.2Compare Source
What's Changed
New Contributors
Full Changelog: lycheeverse/lychee-action@v2...v2.0.2
v2.0.1: Version 2.0.1Compare Source
What's Changed
New Contributors
Full Changelog: lycheeverse/lychee-action@v2...v2.0.1
shivammathur/cache-extensions (shivammathur/cache-extensions)
v1.14.6Compare Source
What's Changed
Full Changelog: shivammathur/cache-extensions@1.14.5...1.14.6
v1.14.5Compare Source
ppa:ondrej/php.Full Changelog: shivammathur/cache-extensions@1.14.4...1.14.5
v1.14.4Compare Source
What's Changed
Full Changelog: shivammathur/cache-extensions@1.14.3...1.14.4
v1.14.3Compare Source
v1.14.2Compare Source
v1.14.1Compare Source
What's Changed
cache.sh.GITHUB_JOBon non-github runners.Full Changelog: shivammathur/cache-extensions@1.13.0...1.14.1
v1.13.0Compare Source
Full Changelog: shivammathur/cache-extensions@1.12.0...1.13.0
v1.12.0Compare Source
Full Changelog: shivammathur/cache-extensions@1.11.1...1.12.0
v1.11.1Compare Source
Full Changelog: shivammathur/cache-extensions@1.11.0...1.11.1
v1.11.0Compare Source
Full Changelog: shivammathur/cache-extensions@1.10.1...1.11.0
v1.10.1Compare Source
cache.sh.Full Changelog: shivammathur/cache-extensions@1.10.0...1.10.1
v1.10.0Compare Source
Full Changelog: shivammathur/cache-extensions@1.9.1...1.10.0
v1.9.1Compare Source
php-version-fileinputFull Changelog: shivammathur/cache-extensions@1.9.0...1.9.1
v1.9.0Compare Source
$GITHUB_OUTPUT.v1.8.2Compare Source
v1.8.1Compare Source
v1.8.0Compare Source
couchbaseon macOS.v1.7.1Compare Source
v1.7.0Compare Source
16.x.v1.6.2Compare Source
\d.x, and aliases latest and nightly.APCuandImagick.setup-phpNPM package.macOS.Ubuntu.macOS.v1.6.1Compare Source
macOS.v1.6.0Compare Source
macOS.extension.shto 3 scripts.get_api_versionincache.sh.@actions/cacheto cache dependencies.Linuxdependency setup.v1.5.1Compare Source
v1.5.0Compare Source
v1.4.0Compare Source
PHP 5.3onUbuntu.PHP 5.6+onMacOS ARM.PHP 5.3.v1.3.3Compare Source
extension_dirfor PHP 8 on Ubuntuv1.3.2Compare Source
v1.3.1Compare Source
PHP 8.1andmacos-11.0to theREADME.Node.jsdependencies.v1.3.0Compare Source
PHP 8.1.latest.PHP 8.0.PHP 8.0.Node.jsdependencies.v1.2.0Compare Source
PHP 8afterZEND_EXTENSION_API_NObump.4.0.3.Node.jsdependencies.v1.1.3Compare Source
cubridto the lists.README.v1.1.2Compare Source
PHP 8.0prefix forlinux.v1.1.1Compare Source
Xdebugto ignore lists for PHP 8.ES2019.v1.1.0Compare Source
actions/cachetov2inREADME.Ubuntu 20.04.v1.0.6Compare Source
v1.0.5Compare Source
windows.v1.0.4Compare Source
Update dependencies to fix
CVE-2020-7598v1.0.3Compare Source
macportsbuilds onmacOSfor PHP 5.3, 5.4 and 5.5.linux.Note: Please reset the key if you are caching extensions on PHP 5.3, 5.4 or 5.5 on
macOS.v1.0.2Compare Source
extension_dirfor PHP 5.x ondarwin.ubuntufor extensions to be cached.ubunturelease name to the key.v1.0.1Compare Source
shivammathur/setup-php (shivammathur/setup-php)
v2.37.2Compare Source
Changelog
Fixed macOS setup by marking
shivammathur/phpandshivammathur/extensionsas trusted taps.Switched to Visual Studio 18
(vs18)builds for PHP 8.6 on Windows.Improved looking up environment variables.
Tightened security in internal GitHub action workflows.
Updated Node.js dependencies.
For the complete list of changes, please refer to the Full Changelog
Follow for updates
v2.37.1Compare Source
Changelog
Security Updates
Fixes and Improvements
Fixed support for
phalconon Windows.Fixed restoring tools when using cached using previous runs.
Improved enabling
gearmanextension on Linux.Fixed fallback when installing
PhpManagerandVcRedistmodules on Windows.Fixed parsing extension inputs with backslash line continuation.
Improved workflow examples
Updated OS release mappings for newer Ubuntu releases.
Updated internal workflows for Codecov v6 and NPM trusted publishing.
Updated Node.js dependencies.
Fixed composer version in README. (#1081)
Thanks @Pyker for the contribution
For the complete list of changes, please refer to the Full Changelog
Follow for updates
v2.37.0Compare Source
Changelog
Updated the action to use Node.js 24. (#1049)
Added support for
masterin thephp-versioninput. It should now set up a nightly build from the master branch ofphp-src.Added support to install
ioncubeandzephir_parserextensions on PHP 8.5.Expanded support for installing extensions using Homebrew on macOS from the
shivammathur/homebrew-extensionstap. This includespdo_firebird,sqlsrv,pdo_sqlsrv,pecl_http,swow,xhprof, and several other supported extensions.Improved switching PHP versions on Linux. Missing alternatives should now be registered automatically before switching versions. #1067
Improved support for Homebrew on macOS. It should now retry stuck
brewcommands with an inactivity watchdog.Improved support for adding tools. It should now correctly use the latest release download URL when a version is not specified. (#1064)
Improved tool setup and caching on self-hosted runners.
Improved support for
sqlsrvandpdo_sqlsrvon PHP 8.1 and 8.2.Fixed installing
pecl_httpon Windows. Switched todownloads.php.netfor fixingICUversion post install.Fixed cached
couchbaseinstalls on macOS using theshivammathur/cache-extensionsaction.Replaced
@actions/corewith local functions to reduce bundle size.Refactored to use ES2024+ features for Node 24.
Updated actions used in examples to their latest versions.
Updated Node.js dependencies.
Thanks @theluckystrike for the contribution 🎉
Thanks @code-kudu, @ssddanbrown, @RoundingWell, and @ntzrbtr for the sponsorship ❤️
For the complete list of changes, please refer to the Full Changelog
Follow for updates
v2.36.0Compare Source
Changelog
8.6in thephp-versioninput should now set up a nightly build from the master branch ofphp-src. (#1002)pdo_ibmandibm_db2extensions.blackfireextension on PHP 8.5.gnupgfrom source would install the requiredlibgpgmelibrary automatically. (#1021)symfony-cli. It should now correctly set up the requested version. (#1008)Improved support for
relayextension. Also added support to install the nightly version of the extension. (#1011, #1012)Improved installing PHP on macOS. Also fixed installing PHP on
macos-15-intelGitHub runner. (#1029)Improved support for
deb822format sources files on Linux. It should now set up the sources files indeb822format on Ubuntu 24.04, Debian 13, and newer. It would automatically switch the format as well for the repositories added by the action to the new format when supported. (#1027)Improved support for installing
pdo_oci. (#1028)Fixed installing
gearmanextension for PHP 5.6 and 7.0 on Linux.Fixed an edge case in tools setup to fall back to the latest version. (#1024)
Fixed support to build extensions with uppercase names from PECL. (#1017)
Fixed warning on
redissetup on macOS after formula rename. (shivammathur/homebrew-extensions#5413)Fixed fallback link for
composersetup. (#1025)Updated the link for flex documentation in README. (#1020)
Updated Node.js dependencies.
Thanks @shyim, @tillkruss, and @nicolas-grekas for the contributions 🎉
Thanks @JetBrainsOfficial and @cachewerk for the sponsorship ❤️
For the complete list of changes, please refer to the Full Changelog
Follow for updates
v2.35.5Compare Source
Changelog
For example, this should install the latest release of PHPUnit with
10.5as the prefix.intlextension with a particular ICU versions.github-tokeninput value to avoid rate limits.Improved errors when tools fail to install. (#991)
Fixed warning in get function on request failure.
Added a fallback source for composer phar archives. (#956)
Added a fallback source for PPA keys. (#996)
Fixed
opcache.jit_buffer_sizeconfig on arm environments. (#999)Updated Node.js dependencies.
For the complete list of changes, please refer to the Full Changelog
Follow for updates
v2.35.4Compare Source
Changelog
Fixed updating brew core tap before installing PHP on macOS.
Updated actions in internal workflows.
Updated Node.js dependencies.
For the complete list of changes, please refer to the Full Changelog
Follow for updates
v2.35.3Compare Source
Changelog
Improved
github-tokensupport for GitHub Enterprise. (#981).For GitHub Enterprise users, the
github-tokeninput does not default to theGITHUB_TOKENsecret. Therefore, it's recommended to set thegithub-tokeninput to a Personal Access Token (PAT).Fixed support for
relayextension for PHP 7.4 on macOS.Updated internal workflows to not run on forks. (#982)
Updated Node.js dependencies.
Thanks @jrfnl for the contributions 🎉
For the complete list of changes, please refer to the Full Changelog
Follow for updates
v2.35.2Compare Source
Changelog
auth.json. (#980)For the complete list of changes, please refer to the Full Changelog
Follow for updates
v2.35.1Compare Source
Changelog
Fixed regression in composer authentication in
2.35.0. (#979)Fixed installing
geosextension on PHP 8.5.For the complete list of changes, please refer to the Full Changelog
Follow for updates
v2.35.0Compare Source
Changelog
Added support for
github-tokeninput. (#969)It uses the
GITHUB_TOKENsecret by default and should prevent any rate limiting issues while installing your composer dependencies or while adding any tools supported by setup-php.Also, it can used to specify a personal access token (PAT) to authenticate with GitHub if you need that for your composer dependencies.
carthage-software/mago. (#898, #975)Roave/BackwardCompatibilityCheck. (#911, #974)shipmonk/name-collision-detector. (#932, #973)