ID-068: Replace dorny/paths-filter with bash path filtering#182
Merged
Conversation
dorny/paths-filter@v3 runs on Node.js 20, deprecated on GitHub Actions from 2026-06-02. No Node.js 24-compatible release exists yet (PR #294 open on the upstream repo at time of fix). Replace the action in ci.yml with a native bash step: - checkout with fetch-depth: 0 for full history - git diff / git ls-files to list changed files per event type - grep -E patterns matching the original filter rules No third-party action runtime required; behaviour is identical. https://claude.ai/code/session_01BzWkJD95UnqdwVcrRq3GVd
haalfi
commented
Mar 11, 2026
Owner
Author
haalfi
left a comment
There was a problem hiding this comment.
Reviewed the full diff. Clean replacement of dorny/paths-filter with native bash — pattern coverage matches, error handling is sound (GHA's default set -eo pipefail), all push/PR/initial-push branches are covered, and no injection risk from the ${{ }} expressions (all GitHub-controlled values). Backlog and ripple check clear. No issues found.
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.
Summary
dorny/paths-filter@v3uses Node.js 20, which GitHub Actions deprecates from 2026-06-02; no Node.js 24-compatible release exists yet (upstream PR #294 still open)git diff/git ls-files+grep -E— no third-party action runtime requiredfetch-depth: 0to thechangesjob checkout so all commits are available for diffingTest plan
changesjob passes on this PR (code files changed →code=true, docs untouched →docs=false)lint,typecheck,test, etc.) run as expecteddocsjobs are skipped when only code files changegatejob reports successhttps://claude.ai/code/session_01BzWkJD95UnqdwVcrRq3GVd