Skip to content
Closed
Show file tree
Hide file tree
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/actions/artifact-cache/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ runs:

- name: Restore artifact cache
id: restore
uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6
with:
path: ${{ steps.prepare.outputs.artifact-path }}
key: ${{ steps.prepare.outputs.cache-key }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/agents-auto-pilot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ jobs:

- name: Cache pip (LLM requirements)
if: steps.check_enabled.outputs.enabled == 'true'
uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6
Comment on lines 223 to +225

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

πŸ“ Maintainability & Code Quality | 🟠 Major | πŸ—οΈ Heavy lift

Move this cache-pin update to stranske/Workflows instead of patching the consumer copy.

This file is an agents-*.yml workflow, and the same step already exists in the shared stranske/Workflows workflow. Updating only the consumer repo creates drift from the intended source of truth. As per coding guidelines, agents-*.yml workflow files should be fixed in stranske/Workflows, not locally in the consumer repo.

πŸ€– Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @.github/workflows/agents-auto-pilot.yml around lines 223 - 225, The
cache-pin change in the Cache pip (LLM requirements) step should not be applied
in this consumer workflow because the same step lives in the shared agents
workflow source. Revert the local change in agents-auto-pilot.yml and make the
pin update in stranske/Workflows where the shared workflow is defined, so the
Cache pip step stays consistent across consumers.

Sources: Coding guidelines, Linked repositories

with:
path: |
~/.cache/pip
Expand Down
Loading