From 4a14ac2f3cafae03950675aa70301b083d447d00 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Apr 2026 20:35:45 +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/data-sync.yml | 22 ++++++++-------- .github/workflows/deploy-preview.yml | 6 ++--- .github/workflows/deploy-production.yml | 12 ++++----- .github/workflows/website-commands.yml | 26 +++++++++---------- .github/workflows/website-deploy-on-merge.yml | 4 +-- 5 files changed, 35 insertions(+), 35 deletions(-) diff --git a/.github/workflows/data-sync.yml b/.github/workflows/data-sync.yml index 166710f..23b2370 100644 --- a/.github/workflows/data-sync.yml +++ b/.github/workflows/data-sync.yml @@ -107,7 +107,7 @@ jobs: - name: Check for existing PR id: check-pr - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const { data: prs } = await github.rest.pulls.list({ @@ -128,7 +128,7 @@ jobs: - name: Create PR if needed id: create-pr if: fromJson(steps.check-pr.outputs.result).exists == false - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const pr = await github.rest.pulls.create({ @@ -175,7 +175,7 @@ jobs: fi - name: Add deployment instructions comment - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -193,7 +193,7 @@ jobs: }); - name: Comment on source PR - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.DATA_REPO_TOKEN }} script: | @@ -240,7 +240,7 @@ jobs: steps: - name: Find corresponding Website PR id: find-pr - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const targetBranch = 'data/${{ github.event.client_payload.branch }}'; @@ -268,7 +268,7 @@ jobs: - name: Check for deploy label on source PR id: check-label if: steps.find-pr.outputs.pr_number - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.DATA_REPO_TOKEN }} script: | @@ -284,7 +284,7 @@ jobs: - name: Notify (no deploy label) if: steps.find-pr.outputs.pr_number && steps.check-label.outputs.has_deploy_label != 'true' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.DATA_REPO_TOKEN }} script: | @@ -300,7 +300,7 @@ jobs: - name: Notify deployment starting (with deploy label) if: steps.find-pr.outputs.pr_number && steps.check-label.outputs.has_deploy_label == 'true' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.DATA_REPO_TOKEN }} script: | @@ -322,7 +322,7 @@ jobs: steps: - name: Trigger deploy-production workflow - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | console.log('Dispatching deploy-production event...'); @@ -353,7 +353,7 @@ jobs: steps: - name: Close corresponding PR and delete branch - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const targetBranch = 'data/${{ github.event.client_payload.branch }}'; @@ -397,7 +397,7 @@ jobs: } - name: Comment on source PR - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.DATA_REPO_TOKEN }} script: | diff --git a/.github/workflows/deploy-preview.yml b/.github/workflows/deploy-preview.yml index 68bb63d..ff0bcbb 100644 --- a/.github/workflows/deploy-preview.yml +++ b/.github/workflows/deploy-preview.yml @@ -159,7 +159,7 @@ jobs: echo "✓ Propagation delay complete" - name: Comment on source PR with preview URL - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.DATA_REPO_TOKEN }} script: | @@ -188,7 +188,7 @@ jobs: - name: Handle failure if: failure() - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.DATA_REPO_TOKEN }} script: | @@ -209,7 +209,7 @@ jobs: - name: Handle cancellation if: cancelled() - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.DATA_REPO_TOKEN }} script: | diff --git a/.github/workflows/deploy-production.yml b/.github/workflows/deploy-production.yml index a4e94de..8b409b5 100644 --- a/.github/workflows/deploy-production.yml +++ b/.github/workflows/deploy-production.yml @@ -50,7 +50,7 @@ jobs: - name: Get PR information (for manual dispatch) if: github.event_name == 'workflow_dispatch' && inputs.website_pr != '' id: pr_info - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const { data: pr } = await github.rest.pulls.get({ @@ -240,7 +240,7 @@ jobs: github.event_name == 'repository_dispatch' && github.event.client_payload.website_pr != null && github.event.client_payload.website_pr != '' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const websitePR = ${{ github.event.client_payload.website_pr }}; @@ -265,7 +265,7 @@ jobs: github.event_name == 'repository_dispatch' && github.event.client_payload.pr_branch != null && github.event.client_payload.pr_branch != '' - uses: actions/github-script@v8 + uses: actions/github-script@v9 continue-on-error: true with: script: | @@ -284,7 +284,7 @@ jobs: - name: Comment on source PR (auto mode) if: github.event_name == 'repository_dispatch' - uses: actions/github-script@v8 + uses: actions/github-script@v9 continue-on-error: true with: github-token: ${{ secrets.DATA_REPO_TOKEN }} @@ -308,7 +308,7 @@ jobs: - name: Comment on Website PR (manual retry mode) if: github.event_name == 'workflow_dispatch' && inputs.website_pr != '' - uses: actions/github-script@v8 + uses: actions/github-script@v9 continue-on-error: true with: script: | @@ -328,7 +328,7 @@ jobs: - name: Handle deployment failure if: failure() - uses: actions/github-script@v8 + uses: actions/github-script@v9 continue-on-error: true env: GITHUB_REPO: ${{ github.repository }} diff --git a/.github/workflows/website-commands.yml b/.github/workflows/website-commands.yml index 184e89b..dccaf84 100644 --- a/.github/workflows/website-commands.yml +++ b/.github/workflows/website-commands.yml @@ -59,7 +59,7 @@ jobs: steps: - name: Parse command id: parse - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const body = (context.eventName === 'issue_comment' @@ -88,7 +88,7 @@ jobs: - name: Check authorization if: steps.parse.outputs.command != 'none' id: auth - uses: actions/github-script@v8 + uses: actions/github-script@v9 env: ALLOWED_USERS: ${{ env.ALLOWED_USERS }} with: @@ -109,7 +109,7 @@ jobs: - name: Reject unauthorized user if: steps.parse.outputs.command != 'none' && steps.auth.outputs.authorized != 'true' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const prNumber = context.eventName === 'issue_comment' @@ -129,7 +129,7 @@ jobs: - name: Get PR details if: steps.parse.outputs.command != 'none' && steps.auth.outputs.authorized == 'true' id: pr - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const prNumber = context.eventName === 'issue_comment' @@ -163,7 +163,7 @@ jobs: - name: Add reaction if: steps.parse.outputs.command != 'none' && github.event_name == 'issue_comment' && steps.auth.outputs.authorized == 'true' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | await github.rest.reactions.createForIssueComment({ @@ -181,7 +181,7 @@ jobs: steps: - name: Show status - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const prNumber = ${{ needs.handle-command.outputs.pr_number }}; @@ -224,7 +224,7 @@ jobs: steps: - name: Get current label status id: label_check - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const prNumber = ${{ needs.handle-command.outputs.pr_number }}; @@ -237,7 +237,7 @@ jobs: core.setOutput('has_label', hasLabel); - name: Add deploy label - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const prNumber = ${{ needs.handle-command.outputs.pr_number }}; @@ -275,7 +275,7 @@ jobs: steps: - name: Get current label status id: label_check - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const prNumber = ${{ needs.handle-command.outputs.pr_number }}; @@ -288,7 +288,7 @@ jobs: core.setOutput('has_label', hasLabel); - name: Remove deploy label - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const prNumber = ${{ needs.handle-command.outputs.pr_number }}; @@ -332,7 +332,7 @@ jobs: steps: - name: Post starting comment - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const prNumber = ${{ needs.handle-command.outputs.pr_number }}; @@ -392,7 +392,7 @@ jobs: uses: actions/deploy-pages@v4 - name: Post success comment - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const prNumber = ${{ needs.handle-command.outputs.pr_number }}; @@ -410,7 +410,7 @@ jobs: - name: Post failure comment if: failure() - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const prNumber = ${{ needs.handle-command.outputs.pr_number }}; diff --git a/.github/workflows/website-deploy-on-merge.yml b/.github/workflows/website-deploy-on-merge.yml index 469310e..b8aa5c0 100644 --- a/.github/workflows/website-deploy-on-merge.yml +++ b/.github/workflows/website-deploy-on-merge.yml @@ -114,7 +114,7 @@ jobs: echo "- **Merged By:** ${{ github.event.pull_request.merged_by.login }}" >> $GITHUB_STEP_SUMMARY - name: Comment on PR with success - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const prNumber = ${{ github.event.pull_request.number }}; @@ -133,7 +133,7 @@ jobs: - name: Comment on PR with failure if: failure() - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const prNumber = ${{ github.event.pull_request.number }};