fix(ci): fix paths-filter change detection and bump all actions#477
Merged
fix(ci): fix paths-filter change detection and bump all actions#477
Conversation
The dorny/paths-filter default predicate-quantifier is 'some' (OR), which means negation patterns like '!**.md' never exclude files already matched by a positive pattern like '**'. Switch to 'every' (AND) so docs-only changes correctly skip CI. Also bump to v4.0.1. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Bump pinned actions to their latest releases and SHA-pin previously unpinned actions to resolve node20 deprecation warnings. - actions/checkout v4.3.0 → v6.0.2 - actions/setup-node v4.2.0 → v6.3.0 - actions/upload-artifact v4 → v7.0.0 (now SHA-pinned) - actions/download-artifact v4 → v8.0.1 (now SHA-pinned) - actions-rust-lang/setup-rust-toolchain v1.15.3 → v1.15.4 - actions-rust-lang/audit v1.2.6 → v1.2.7 - EmbarkStudios/cargo-deny-action v2.0.13 → v2.0.15 - taiki-e/install-action v2.67.3 → v2.70.2 - dfinity/setup-mops v1 → v1.4.1 (now SHA-pinned) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
viviveevee
approved these changes
Mar 30, 2026
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-filternegation patterns (!**.md,!docs/**, etc.) that were silently ineffective due to the defaultpredicate-quantifier: 'some'(OR) semantics. With'every'(AND), docs-only PRs now correctly skip CI.Test plan
🤖 Generated with Claude Code