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

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 | ⚑ Quick win

Update this in stranske/Workflows instead.

Line 225 edits a synced agents-*.yml workflow locally. That will drift from the source-of-truth repo, and stranske/Workflows still has tests pinned to the old actions/cache SHA, so this change needs to land there first as well. As per coding guidelines, agents-*.yml, autofix.yml, .github/codex/ prompts, and synced scripts/docs should be fixed in stranske/Workflows, not in the consumer repo and Synced workflows (agents-*.yml, autofix.yml), prompts in .github/codex/, and synced scripts/docs should be fixed in stranske/Workflows, not locally; do not edit them locally.

πŸ€– 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 at line 225, This synced agents
workflow change should not be edited locally in this repo; the `actions/cache`
SHA update belongs in the source-of-truth `stranske/Workflows` repository first.
Revert the local change in `agents-auto-pilot.yml` and apply the same update in
the upstream synced workflow so the consumer repo stays aligned with the
generated source.

Sources: Coding guidelines, Linked repositories

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