File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 8888
8989 steps :
9090 - name : Request CodeRabbit review on PR
91- uses : actions/github-script@v7
91+ uses : actions/github-script@v9
9292 with :
9393 script : |
9494 const run = context.payload.workflow_run;
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ jobs:
117117
118118 - name : Check if release exists and update if needed
119119 id : check-existing
120- uses : actions/github-script@v7
120+ uses : actions/github-script@v9
121121 with :
122122 script : |
123123 const tagName = '${{ steps.tag.outputs.TAG_NAME }}';
@@ -148,7 +148,7 @@ jobs:
148148
149149 - name : Update existing release
150150 if : steps.check-existing.outputs.exists == 'true'
151- uses : actions/github-script@v7
151+ uses : actions/github-script@v9
152152 env :
153153 TAG_NAME : ${{ steps.tag.outputs.TAG_NAME }}
154154 TAG_MESSAGE : ${{ steps.tag_message.outputs.MESSAGE }}
@@ -211,7 +211,7 @@ jobs:
211211
212212 - name : Create Release
213213 if : steps.check-existing.outputs.exists != 'true'
214- uses : actions/github-script@v7
214+ uses : actions/github-script@v9
215215 env :
216216 TAG_NAME : ${{ steps.tag.outputs.TAG_NAME }}
217217 TAG_MESSAGE : ${{ steps.tag_message.outputs.MESSAGE }}
Original file line number Diff line number Diff line change 3737
3838 - name : Check existing releases
3939 id : check-releases
40- uses : actions/github-script@v7
40+ uses : actions/github-script@v9
4141 with :
4242 script : |
4343 const { data: releases } = await github.rest.repos.listReleases({
6363
6464 - name : Find missing and outdated releases
6565 id : missing
66- uses : actions/github-script@v7
66+ uses : actions/github-script@v9
6767 env :
6868 TAGS : ${{ steps.tags.outputs.TAGS }}
6969 EXISTING_RELEASES : ${{ steps.check-releases.outputs.tags }}
9696
9797 - name : Create or update releases
9898 if : steps.missing.outputs.found_missing == 'true'
99- uses : actions/github-script@v7
99+ uses : actions/github-script@v9
100100 env :
101101 ALL_TAGS : ${{ steps.missing.outputs.all_tags }}
102102 MISSING_TAGS : ${{ steps.missing.outputs.missing_tags }}
@@ -243,7 +243,7 @@ jobs:
243243
244244 - name : Summary
245245 if : always()
246- uses : actions/github-script@v7
246+ uses : actions/github-script@v9
247247 env :
248248 FOUND_MISSING : ${{ steps.missing.outputs.found_missing }}
249249 MISSING_TAGS : ${{ steps.missing.outputs.missing_tags }}
You can’t perform that action at this time.
0 commit comments