Skip to content

[pull] main from openai:main - #121

Merged
pull[bot] merged 1 commit into
gitupdates:mainfrom
openai:main
Jul 31, 2026
Merged

[pull] main from openai:main#121
pull[bot] merged 1 commit into
gitupdates:mainfrom
openai:main

Conversation

@pull

@pull pull Bot commented Jul 31, 2026

Copy link
Copy Markdown

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 : )

## 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
@pull pull Bot locked and limited conversation to collaborators Jul 31, 2026
@pull pull Bot added the ⤵️ pull label Jul 31, 2026
@pull
pull Bot merged commit cbdc98b into gitupdates:main Jul 31, 2026
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant