Commit 9ded3b0
authored
Fix actions/github-script pin to match tagged v8.0.0 release (#4833)
## Summary
Dependabot PR #4413 bumped `actions/github-script` from v7 to v8, but
picked up the `main` branch HEAD (`450193c5abd4`) instead of the tagged
`v8.0.0` SHA (`ed597411d8f9`) — likely because the `v8` major version
tag hadn't been updated when Dependabot ran. The `# v8.0.0` comment was
preserved, making the mismatch invisible without SHA verification.
This fixes the 3 occurrences in `release.yml`. The references in
`push.yml` already use the correct SHA.
```
$ git ls-remote https://github.com/actions/github-script refs/tags/v8 refs/tags/v8.0.0
ed597411d8f924073f98dfc5c65a23a2325f34cd refs/tags/v8
ed597411d8f924073f98dfc5c65a23a2325f34cd refs/tags/v8.0.0
```
This pull request was AI-assisted by Isaac.1 parent 7868cea commit 9ded3b0
1 file changed
Lines changed: 3 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
199 | 199 | | |
200 | 200 | | |
201 | 201 | | |
202 | | - | |
| 202 | + | |
203 | 203 | | |
204 | 204 | | |
205 | 205 | | |
| |||
227 | 227 | | |
228 | 228 | | |
229 | 229 | | |
230 | | - | |
| 230 | + | |
231 | 231 | | |
232 | 232 | | |
233 | 233 | | |
| |||
268 | 268 | | |
269 | 269 | | |
270 | 270 | | |
271 | | - | |
| 271 | + | |
272 | 272 | | |
273 | 273 | | |
274 | 274 | | |
| |||
0 commit comments