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
4 changes: 2 additions & 2 deletions .github/workflows/soop-encode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,14 +102,14 @@ jobs:
fi

- name: Save semantic cache
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v5
if: always()
with:
path: .soop/cache/semantic-cache.db*
key: semantic-cache-${{ github.sha }}

- name: Save tree-sitter parser cache
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v5
Comment on lines +105 to +112

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Stale version comment after major-version bump

Both updated save steps carry # v5 comments, but 55cc834 corresponds to v6.1.0. A reader relying on the comment to audit the pinned version will see the wrong major version.

Prompt To Fix With AI
This is a comment left during a code review.
Path: .github/workflows/soop-encode.yml
Line: 105-112

Comment:
**Stale version comment after major-version bump**

Both updated `save` steps carry `# v5` comments, but `55cc834` corresponds to v6.1.0. A reader relying on the comment to audit the pinned version will see the wrong major version.

How can I resolve this? If you propose a fix, please make it concise.

Fix in Claude Code

if: always()
with:
path: .soop/cache/tree-sitter
Expand Down
Loading