[pull] main from openai:main - #121
Merged
Merged
Conversation
## Problem These workflow `uses:` pins are invalid as written. Each item below shows the current value, why it is wrong, and the correct ref that must be used instead. ### 1. `.github/workflows/detect-breaking-changes.yml` **Current (invalid):** ```yaml uses: astral-sh/setup-uv@e58605a # v5 ``` **Why this is wrong:** - `e58605a9b6da7c637471fab8847a5e5a6b8df081` is **not a commit SHA**. It is the Git object SHA of an **annotated tag** (`v5`). - GitHub Actions does not accept annotated tag *object* SHAs in `uses:` pins (Commits API returns `No commit found for SHA`). - The correct pin is the **commit SHA that tag `v5` points to**: `d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86`. **Correct pin:** ```yaml uses: astral-sh/setup-uv@d4b2f3b # v5 ``` ## Test plan - [ ] Each updated `uses:` ref resolves as a commit via the GitHub Commits API - [ ] Relevant CI jobs on this branch look healthy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
See Commits and Changes for more details.
Created by
pull[bot] (v2.0.0-alpha.4)
Can you help keep this open source service alive? 💖 Please sponsor : )