From e5c0fbd45ca2a16f1168a638a3600c2d72335db2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 22:47:27 +0000 Subject: [PATCH] chore(deps): bump actions/github-script from 8 to 9 Bumps [actions/github-script](https://github.com/actions/github-script) from 8 to 9. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v8...v9) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/preview-dispatch.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/preview-dispatch.yml b/.github/workflows/preview-dispatch.yml index be893517b..f422e8bc3 100644 --- a/.github/workflows/preview-dispatch.yml +++ b/.github/workflows/preview-dispatch.yml @@ -27,7 +27,7 @@ jobs: steps: - name: Check write permission id: perm - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: result-encoding: string script: | @@ -42,7 +42,7 @@ jobs: - name: Deny unauthorized user if: steps.perm.outputs.result == 'false' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | await github.rest.issues.createComment({ @@ -54,7 +54,7 @@ jobs: - name: React with rocket if: steps.perm.outputs.result == 'true' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | await github.rest.reactions.createForIssueComment({ @@ -70,7 +70,7 @@ jobs: steps.perm.outputs.result == 'true' && startsWith(github.event.comment.body, '/preview') && !startsWith(github.event.comment.body, '/stop-preview') - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -87,7 +87,7 @@ jobs: if: | steps.perm.outputs.result == 'true' && startsWith(github.event.comment.body, '/stop-preview') - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -105,7 +105,7 @@ jobs: if: github.event_name == 'pull_request' && github.event.action == 'closed' steps: - name: Stop preview - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | await github.rest.actions.createWorkflowDispatch({