From 1a4b945e9022b5109e93b7b54e38821d57c2d97e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Apr 2026 20:16:01 +0000 Subject: [PATCH] chore: 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/commit-convention.yml | 2 +- .github/workflows/dependabot-clean-description.yml | 2 +- .github/workflows/prettier-pr-comment.yml | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/commit-convention.yml b/.github/workflows/commit-convention.yml index 24e504f1e..b408646e0 100644 --- a/.github/workflows/commit-convention.yml +++ b/.github/workflows/commit-convention.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check PR title - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | let title; diff --git a/.github/workflows/dependabot-clean-description.yml b/.github/workflows/dependabot-clean-description.yml index e87af29cf..dc3d9d54f 100644 --- a/.github/workflows/dependabot-clean-description.yml +++ b/.github/workflows/dependabot-clean-description.yml @@ -15,7 +15,7 @@ jobs: - run: npm install marked@latest - name: Rewrite PR description and post original as comment - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const { marked } = require('marked'); diff --git a/.github/workflows/prettier-pr-comment.yml b/.github/workflows/prettier-pr-comment.yml index abc853dd5..a5c22ba22 100644 --- a/.github/workflows/prettier-pr-comment.yml +++ b/.github/workflows/prettier-pr-comment.yml @@ -15,7 +15,7 @@ jobs: pull-requests: write steps: - name: Check user permission - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const { data: permission } = await github.rest.repos.getCollaboratorPermissionLevel({ @@ -32,7 +32,7 @@ jobs: - name: Get PR details id: pr-details - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const { data: pr } = await github.rest.pulls.get({ @@ -48,7 +48,7 @@ jobs: } - name: Add reaction to acknowledge - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | await github.rest.reactions.createForIssueComment({ @@ -87,7 +87,7 @@ jobs: fi - name: Add completion reaction - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | await github.rest.reactions.createForIssueComment({