3232 uses : ./.github/actions/setup
3333 - id : state
3434 name : Get state
35- uses : actions/github-script@v7
35+ uses : actions/github-script@v8
3636 env :
3737 TRIGGERING_ACTOR : ${{ github.triggering_actor }}
3838 with :
6666 name : Create branch with release candidate
6767 run : bash scripts/release/workflow/start.sh
6868 - name : Re-run workflow
69- uses : actions/github-script@v7
69+ uses : actions/github-script@v8
7070 env :
7171 REF : ${{ steps.start.outputs.branch }}
7272 with :
8989 if : needs.state.outputs.is_prerelease == 'true'
9090 run : bash scripts/release/workflow/exit-prerelease.sh
9191 - name : Re-run workflow
92- uses : actions/github-script@v7
92+ uses : actions/github-script@v8
9393 with :
9494 script : await require('./scripts/release/workflow/rerun.js')({ github, context })
9595
@@ -108,7 +108,7 @@ jobs:
108108 - name : Set up environment
109109 uses : ./.github/actions/setup
110110 - name : Set release title
111- uses : actions/github-script@v7
111+ uses : actions/github-script@v8
112112 with :
113113 result-encoding : string
114114 script : await require('./scripts/release/workflow/set-changesets-pr-title.js')({ core })
@@ -156,7 +156,7 @@ jobs:
156156 TAG : ${{ steps.pack.outputs.tag }}
157157 NPM_CONFIG_PROVENANCE : true
158158 - name : Create Github Release
159- uses : actions/github-script@v7
159+ uses : actions/github-script@v8
160160 env :
161161 PRERELEASE : ${{ needs.state.outputs.is_prerelease }}
162162 with :
@@ -202,7 +202,7 @@ jobs:
202202 git checkout -B "$MERGE_BRANCH" "$GITHUB_REF_NAME"
203203 git push -f origin "$MERGE_BRANCH"
204204 - name : Create PR back to master
205- uses : actions/github-script@v7
205+ uses : actions/github-script@v8
206206 with :
207207 script : |
208208 await github.rest.pulls.create({
0 commit comments