Update GitHub Actions runtime - #3
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: f4be7a2116
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| for action in ("actions/checkout@v7", "actions/setup-python@v7"): | ||
| if action not in workflow: |
There was a problem hiding this comment.
Validate active workflow steps instead of raw substrings
If either action is downgraded while the v7 reference remains in a YAML comment, an unused step, or a longer string such as actions/checkout@v70, this check still passes, so it does not provide the promised regression protection. Parse the workflow steps or match complete active uses: entries, and reject stale versions of these actions.
Useful? React with 👍 / 👎.
Summary
Official release evidence
Verification
python -B scripts/verify.pygit diff --check