From a9d1152def6c69cd9d3a7e3a01ed53b7b6a93904 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Dec 2025 14:32:42 +0000 Subject: [PATCH] chore(deps): bump actions/github-script from 7 to 8 Bumps [actions/github-script](https://github.com/actions/github-script) from 7 to 8. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...v8) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/agent-orchestrator.yml | 2 +- .github/workflows/assign-owners.yml | 6 +++--- .github/workflows/label-sprint-issues.yml | 2 +- .github/workflows/labeler.yml | 2 +- .github/workflows/open-pr-chore-dev-setup-warnings.yml | 2 +- .github/workflows/seed-issues.yml | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/agent-orchestrator.yml b/.github/workflows/agent-orchestrator.yml index 6cc9046..454020f 100644 --- a/.github/workflows/agent-orchestrator.yml +++ b/.github/workflows/agent-orchestrator.yml @@ -33,7 +33,7 @@ jobs: python tools/agents/orchestrator.py "$GITHUB_EVENT_PATH" - name: Open PR for new branch (if any) - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const fs = require('fs'); diff --git a/.github/workflows/assign-owners.yml b/.github/workflows/assign-owners.yml index 02f710e..899be80 100644 --- a/.github/workflows/assign-owners.yml +++ b/.github/workflows/assign-owners.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Assign new/updated issues if: github.event_name == 'issues' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const owner = context.repo.owner; @@ -41,7 +41,7 @@ jobs: - name: Batch-assign Sprint 01 issues (manual run) if: github.event_name == 'workflow_dispatch' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const owner = context.repo.owner; @@ -63,7 +63,7 @@ jobs: - name: Assign PRs if: github.event_name == 'pull_request' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const owner = context.repo.owner; diff --git a/.github/workflows/label-sprint-issues.yml b/.github/workflows/label-sprint-issues.yml index ae1e388..781c27b 100644 --- a/.github/workflows/label-sprint-issues.yml +++ b/.github/workflows/label-sprint-issues.yml @@ -16,7 +16,7 @@ jobs: contents: read steps: - name: Add agent:auto label to Sprint 01 issues - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const owner = context.repo.owner; diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 1ed2ca5..b285b81 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -12,7 +12,7 @@ jobs: issues: write pull-requests: write steps: - - uses: actions/github-script@v7 + - uses: actions/github-script@v8 with: script: | const branch = context.payload.pull_request.head.ref; diff --git a/.github/workflows/open-pr-chore-dev-setup-warnings.yml b/.github/workflows/open-pr-chore-dev-setup-warnings.yml index ad9197f..5f273b9 100644 --- a/.github/workflows/open-pr-chore-dev-setup-warnings.yml +++ b/.github/workflows/open-pr-chore-dev-setup-warnings.yml @@ -17,7 +17,7 @@ jobs: uses: actions/checkout@v4 - name: Create or update PR - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const owner = context.repo.owner; diff --git a/.github/workflows/seed-issues.yml b/.github/workflows/seed-issues.yml index bdee957..4c1c96a 100644 --- a/.github/workflows/seed-issues.yml +++ b/.github/workflows/seed-issues.yml @@ -20,7 +20,7 @@ jobs: uses: actions/checkout@v4 - name: Create labels and issues from seed file - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const fs = require('fs');