32
32
uses : ./.github/actions/setup
33
33
- id : state
34
34
name : Get state
35
- uses : actions/github-script@v7
35
+ uses : actions/github-script@v8
36
36
env :
37
37
TRIGGERING_ACTOR : ${{ github.triggering_actor }}
38
38
with :
66
66
name : Create branch with release candidate
67
67
run : bash scripts/release/workflow/start.sh
68
68
- name : Re-run workflow
69
- uses : actions/github-script@v7
69
+ uses : actions/github-script@v8
70
70
env :
71
71
REF : ${{ steps.start.outputs.branch }}
72
72
with :
89
89
if : needs.state.outputs.is_prerelease == 'true'
90
90
run : bash scripts/release/workflow/exit-prerelease.sh
91
91
- name : Re-run workflow
92
- uses : actions/github-script@v7
92
+ uses : actions/github-script@v8
93
93
with :
94
94
script : await require('./scripts/release/workflow/rerun.js')({ github, context })
95
95
@@ -108,7 +108,7 @@ jobs:
108
108
- name : Set up environment
109
109
uses : ./.github/actions/setup
110
110
- name : Set release title
111
- uses : actions/github-script@v7
111
+ uses : actions/github-script@v8
112
112
with :
113
113
result-encoding : string
114
114
script : await require('./scripts/release/workflow/set-changesets-pr-title.js')({ core })
@@ -156,7 +156,7 @@ jobs:
156
156
TAG : ${{ steps.pack.outputs.tag }}
157
157
NPM_CONFIG_PROVENANCE : true
158
158
- name : Create Github Release
159
- uses : actions/github-script@v7
159
+ uses : actions/github-script@v8
160
160
env :
161
161
PRERELEASE : ${{ needs.state.outputs.is_prerelease }}
162
162
with :
@@ -202,7 +202,7 @@ jobs:
202
202
git checkout -B "$MERGE_BRANCH" "$GITHUB_REF_NAME"
203
203
git push -f origin "$MERGE_BRANCH"
204
204
- name : Create PR back to master
205
- uses : actions/github-script@v7
205
+ uses : actions/github-script@v8
206
206
with :
207
207
script : |
208
208
await github.rest.pulls.create({
0 commit comments