diff --git a/.github/workflows/claude-ci-failure-auto-fix.yml b/.github/workflows/claude-ci-failure-auto-fix.yml index e39c6676ce..070a4acd14 100644 --- a/.github/workflows/claude-ci-failure-auto-fix.yml +++ b/.github/workflows/claude-ci-failure-auto-fix.yml @@ -42,7 +42,7 @@ jobs: - name: Get CI failure details id: failure_details - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const run = await github.rest.actions.getWorkflowRun({ diff --git a/.github/workflows/platform-dev-deploy-event-dispatcher.yml b/.github/workflows/platform-dev-deploy-event-dispatcher.yml index d7915f64c6..b5324b7c2c 100644 --- a/.github/workflows/platform-dev-deploy-event-dispatcher.yml +++ b/.github/workflows/platform-dev-deploy-event-dispatcher.yml @@ -17,7 +17,7 @@ jobs: - name: Check comment permissions and deployment status id: check_status if: github.event_name == 'issue_comment' && github.event.issue.pull_request - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const commentBody = context.payload.comment.body.trim(); @@ -55,7 +55,7 @@ jobs: - name: Post permission denied comment if: steps.check_status.outputs.permission_denied == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | await github.rest.issues.createComment({ @@ -68,7 +68,7 @@ jobs: - name: Get PR details for deployment id: pr_details if: steps.check_status.outputs.should_deploy == 'true' || steps.check_status.outputs.should_undeploy == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const pr = await github.rest.pulls.get({ @@ -98,7 +98,7 @@ jobs: - name: Post deploy success comment if: steps.check_status.outputs.should_deploy == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | await github.rest.issues.createComment({ @@ -126,7 +126,7 @@ jobs: - name: Post undeploy success comment if: steps.check_status.outputs.should_undeploy == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | await github.rest.issues.createComment({ @@ -139,7 +139,7 @@ jobs: - name: Check deployment status on PR close id: check_pr_close if: github.event_name == 'pull_request' && github.event.action == 'closed' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const comments = await github.rest.issues.listComments({ @@ -187,7 +187,7 @@ jobs: github.event_name == 'pull_request' && github.event.action == 'closed' && steps.check_pr_close.outputs.should_undeploy == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | await github.rest.issues.createComment({