Skip to content

Commit 9ded3b0

Browse files
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

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ jobs:
199199
echo "VERSION=${VERSION:1}" >> $GITHUB_ENV
200200
201201
- name: Update setup-cli
202-
uses: actions/github-script@450193c5abd4cdb17ba9f3ffcfe8f635c4bb6c2a # v8.0.0
202+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
203203
with:
204204
github-token: ${{ secrets.DECO_GITHUB_TOKEN }}
205205
script: |
@@ -227,7 +227,7 @@ jobs:
227227
echo "VERSION=${VERSION:1}" >> $GITHUB_ENV
228228
229229
- name: Update homebrew-tap
230-
uses: actions/github-script@450193c5abd4cdb17ba9f3ffcfe8f635c4bb6c2a # v8.0.0
230+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
231231
with:
232232
github-token: ${{ secrets.DECO_GITHUB_TOKEN }}
233233
script: |
@@ -268,7 +268,7 @@ jobs:
268268
echo "VERSION=${VERSION:1}" >> $GITHUB_ENV
269269
270270
- name: Update CLI version in the VSCode extension
271-
uses: actions/github-script@450193c5abd4cdb17ba9f3ffcfe8f635c4bb6c2a # v8.0.0
271+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
272272
with:
273273
github-token: ${{ secrets.DECO_GITHUB_TOKEN }}
274274
script: |

0 commit comments

Comments
 (0)