Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
Improve comment
  • Loading branch information
henrymercer committed Sep 22, 2025
commit 5065ea8eef517afdf6f7e41413ff347bac2896a1
2 changes: 1 addition & 1 deletion pr-checks/sync_back.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def scan_generated_workflows(workflow_dir: str) -> Dict[str, str]:
for action_name, version_with_comment in matches:
# Only track non-local actions (those with / but not starting with ./)
if not action_name.startswith('./'):
# Take the latest version seen (they should all be the same after Dependabot)
# Assume that version numbers are consistent (this should be the case on a Dependabot update PR)
action_versions[action_name] = version_with_comment.rstrip()

return action_versions
Expand Down