Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
src: ${{ steps.filter.outputs.src }}
steps:
- uses: actions/checkout@v6
- uses: dorny/paths-filter@v3
- uses: dorny/paths-filter@v4
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚩 Verify dorny/paths-filter v4 compatibility

The dorny/paths-filter action is bumped from v3 to v4. The configuration used here (simple path glob filters with an id and outputs) is basic and unlikely to have breaking changes, but since this is a major version bump, it's worth confirming that v4 has been released and that the outputs.<filter_name> interface (used at .github/workflows/ci.yml:34 as steps.filter.outputs.src) hasn't changed. If the output format changed (e.g., from a string 'true'/'false' to something else), the conditional at line 80 (needs.changes.outputs.src == 'true') could silently fail, causing the quality and tests jobs to be skipped on PRs.

Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

id: filter
with:
filters: |
Expand Down
Loading