File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -397,7 +397,7 @@ jobs:
397397
398398 steps :
399399 - name : Report deployment failure
400- uses : actions/github-script@v8
400+ uses : actions/github-script@v9
401401 with :
402402 script : |
403403 await github.rest.repos.createCommitStatus({
Original file line number Diff line number Diff line change 2929
3030 steps :
3131 - name : Check latest deploy-develop status
32- uses : actions/github-script@v8
32+ uses : actions/github-script@v9
3333 with :
3434 script : |
3535 // Find the most recent deploy-develop workflow run on the develop branch
Original file line number Diff line number Diff line change 5050
5151 - name : Comment on PR if linting fails
5252 if : steps.markdown-lint.outcome == 'failure' && github.event_name == 'pull_request'
53- uses : actions/github-script@v8
53+ uses : actions/github-script@v9
5454 with :
5555 script : |
5656 const marker = '<!-- markdown-lint-comment -->';
Original file line number Diff line number Diff line change 5454 steps :
5555 - name : Check for breaking-change label
5656 id : check-label
57- uses : actions/github-script@v8
57+ uses : actions/github-script@v9
5858 with :
5959 script : |
6060 // Fetch current PR labels via API (not from event payload which is stale)
9393
9494 - name : Comment on PR if breaking changes detected
9595 if : failure() && steps.check-label.outputs.skip != 'true'
96- uses : actions/github-script@v8
96+ uses : actions/github-script@v9
9797 with :
9898 script : |
9999 github.rest.issues.createComment({
Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ jobs:
153153 retention-days : 30
154154
155155 - name : Comment PR with validation results
156- uses : actions/github-script@v8
156+ uses : actions/github-script@v9
157157 if : failure() && github.event_name == 'pull_request'
158158 with :
159159 script : |
Original file line number Diff line number Diff line change 1313 runs-on : ubuntu-latest
1414 steps :
1515 - name : Create lightweight tag
16- uses : actions/github-script@v8
16+ uses : actions/github-script@v9
1717 with :
1818 script : |
1919 const sha = context.sha.substring(0, 7);
You can’t perform that action at this time.
0 commit comments