From 475aee057a5b32b6524055abfb226a6387869d2e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 03:15:34 +0000 Subject: [PATCH] ci(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/integration-testing.yml | 4 ++-- .github/workflows/pr-automerge.yml | 4 ++-- .github/workflows/slack-open-prs-notification.yml | 2 +- .github/workflows/strands-command.yml | 8 ++++---- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/integration-testing.yml b/.github/workflows/integration-testing.yml index 2f1e3c1..80fc8b0 100644 --- a/.github/workflows/integration-testing.yml +++ b/.github/workflows/integration-testing.yml @@ -29,7 +29,7 @@ jobs: - name: Safety Check - Prevent Workflow Modification Attacks id: safety-check - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: result-encoding: string script: | @@ -68,7 +68,7 @@ jobs: return 'true'; - name: Collaborator Check - uses: actions/github-script@v8 + uses: actions/github-script@v9 id: collab-check with: result-encoding: string diff --git a/.github/workflows/pr-automerge.yml b/.github/workflows/pr-automerge.yml index 3f71caf..9cca57d 100644 --- a/.github/workflows/pr-automerge.yml +++ b/.github/workflows/pr-automerge.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Check CI status id: ci-status - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const { data: checkRuns } = await github.rest.checks.listForRef({ @@ -54,7 +54,7 @@ jobs: - name: Auto-merge PR if: steps.ci-status.outputs.result == 'true' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | await github.rest.pulls.merge({ diff --git a/.github/workflows/slack-open-prs-notification.yml b/.github/workflows/slack-open-prs-notification.yml index f59402b..9554aec 100644 --- a/.github/workflows/slack-open-prs-notification.yml +++ b/.github/workflows/slack-open-prs-notification.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Get open PRs id: open-prs - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const { data: prs } = await github.rest.pulls.list({ diff --git a/.github/workflows/strands-command.yml b/.github/workflows/strands-command.yml index 6d51e16..39047a2 100644 --- a/.github/workflows/strands-command.yml +++ b/.github/workflows/strands-command.yml @@ -34,7 +34,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check authorization - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | // Skip auth check for workflow_dispatch (manual runs) @@ -70,7 +70,7 @@ jobs: fetch-depth: 0 - name: Add strands-running label - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const issueNumber = ${{ inputs.issue_id || github.event.issue.number || github.event.pull_request.number }}; @@ -83,7 +83,7 @@ jobs: - name: Process inputs and build prompts id: process-inputs - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const processInputs = require('./.github/scripts/javascript/process-inputs.cjs'); @@ -112,7 +112,7 @@ jobs: - name: Remove strands-running label if: always() - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | try {