Commit 5a9b9f2
authored
fix: update recording workflow action SHAs to include skip-commit support (#5199)
## Summary
Updates the pinned action SHAs in the recording workflow to point to the
current main branch that includes the merged changes from #5123.
## Problem
The workflow was failing with:
```
remote: Permission to llamastack/llama-stack.git denied to github-actions[bot].
fatal: unable to access 'https://github.com/llamastack/llama-stack/': The requested URL returned error: 403
```
This happened because the pinned SHAs (`ce063acf`) were from before
#5123 merged, so they didn't support the `skip-commit: true` parameter.
The old action tried to push recordings directly (which fails with
read-only permissions).
## Solution
Updated both action SHAs to `4a4f48ff` (current main) which:
- Respects `skip-commit: true` parameter
- Uploads recordings as artifacts
- Allows the companion workflow to handle commits with proper write
permissions
## Test plan
- [x] Verified the workflow now uses the correct action version that
supports skip-commit
- [ ] Manual workflow_dispatch trigger should now work without 403
errors
Fixes the workflow failures seen in
https://github.com/llamastack/llama-stack/actions/runs/23263329503
Signed-off-by: Charlie Doern <cdoern@redhat.com>1 parent 4a4f48f commit 5a9b9f2
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
190 | 190 | | |
191 | 191 | | |
192 | 192 | | |
193 | | - | |
| 193 | + | |
194 | 194 | | |
195 | 195 | | |
196 | 196 | | |
| |||
200 | 200 | | |
201 | 201 | | |
202 | 202 | | |
203 | | - | |
| 203 | + | |
204 | 204 | | |
205 | 205 | | |
206 | 206 | | |
| |||
0 commit comments