Fix CI - #45
Merged
Merged
Conversation
GitHub now fails any workflow that uses actions/cache v2, which made every job fail during setup before running anything. Bumps cache to v4, checkout to v4 and the security checker to v5. Also updates squizlabs/php_codesniffer to 3.13.6, which clears the advisory that was failing the security job.
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.
CI fails on every branch right now, for two reasons that are unrelated to any code change.
GitHub automatically fails workflows that use
actions/cache: v2, so the composer, phpstan and phpcs jobs all die during setup before running anything. This bumps cache to v4, checkout to v4 and the security checker to v5.The security job fails separately because
squizlabs/php_codesniffer3.7.1 has a published advisory (CVE-2026-67434, OS command injection). Updating it to 3.13.6 clears it. That is the only package the lock file changes.Checked locally: phpcs passes on the whole codebase with the new version,
composer validatepasses and the file is still normalized.