From 67b73de738d6f909b1851510f829267fd5edd0c4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 Jul 2026 06:43:40 +0000 Subject: [PATCH] chore(deps): bump actions/github-script from 7 to 9 Bumps [actions/github-script](https://github.com/actions/github-script) from 7 to 9. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...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/pr-check.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index 4896f9f..88bcb50 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -26,7 +26,7 @@ jobs: pr-sha: ${{ steps.get-sha.outputs.sha }} steps: - name: Check commenter permission - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const { data } = await github.rest.repos.getCollaboratorPermissionLevel({ @@ -45,7 +45,7 @@ jobs: } - name: React with rocket - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | await github.rest.reactions.createForIssueComment({ @@ -57,7 +57,7 @@ jobs: - name: Get PR head SHA id: get-sha - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const { data: pr } = await github.rest.pulls.get({ @@ -68,7 +68,7 @@ jobs: core.setOutput('sha', pr.head.sha); - name: Set checks to pending - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const sha = '${{ steps.get-sha.outputs.sha }}'; @@ -119,7 +119,7 @@ jobs: - name: Report status if: always() - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | await github.rest.repos.createCommitStatus({ @@ -182,7 +182,7 @@ jobs: - name: Report status if: always() - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | await github.rest.repos.createCommitStatus({ @@ -223,7 +223,7 @@ jobs: - name: Report status if: always() - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | await github.rest.repos.createCommitStatus({ @@ -264,7 +264,7 @@ jobs: - name: Report status if: always() - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | await github.rest.repos.createCommitStatus({ @@ -304,7 +304,7 @@ jobs: - name: Report status if: always() - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | await github.rest.repos.createCommitStatus({ @@ -322,7 +322,7 @@ jobs: runs-on: ubuntu-latest if: always() && needs.slash-command.result == 'success' steps: - - uses: actions/github-script@v7 + - uses: actions/github-script@v9 with: script: | const jobs = ${{ toJSON(needs) }};