32
32
uses : ./.github/actions/setup
33
33
- id : state
34
34
name : Get state
35
- uses : actions/github-script@v6
35
+ uses : actions/github-script@v7
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@v6
69
+ uses : actions/github-script@v7
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@v6
92
+ uses : actions/github-script@v7
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@v6
111
+ uses : actions/github-script@v7
112
112
with :
113
113
result-encoding : string
114
114
script : await require('./scripts/release/workflow/set-changesets-pr-title.js')({ core })
@@ -154,7 +154,7 @@ jobs:
154
154
TARBALL : ${{ steps.pack.outputs.tarball }}
155
155
TAG : ${{ steps.pack.outputs.tag }}
156
156
- name : Create Github Release
157
- uses : actions/github-script@v6
157
+ uses : actions/github-script@v7
158
158
env :
159
159
PRERELEASE : ${{ needs.state.outputs.is_prerelease }}
160
160
with :
@@ -200,7 +200,7 @@ jobs:
200
200
git checkout -B "$MERGE_BRANCH" "$GITHUB_REF_NAME"
201
201
git push -f origin "$MERGE_BRANCH"
202
202
- name : Create PR back to master
203
- uses : actions/github-script@v6
203
+ uses : actions/github-script@v7
204
204
with :
205
205
script : |
206
206
await github.rest.pulls.create({
0 commit comments