From bf033e08c1ab8adbb79a683515ad0200f84ef5aa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Sep 2026 01:06:03 +0000 Subject: [PATCH] ci(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/issue-classifier.yml | 2 +- .github/workflows/weekly-report.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/issue-classifier.yml b/.github/workflows/issue-classifier.yml index fae8093..7f92d18 100644 --- a/.github/workflows/issue-classifier.yml +++ b/.github/workflows/issue-classifier.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: 自动分类 Issue - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const issue = context.issue; diff --git a/.github/workflows/weekly-report.yml b/.github/workflows/weekly-report.yml index 0dbeda5..a3eaf3c 100644 --- a/.github/workflows/weekly-report.yml +++ b/.github/workflows/weekly-report.yml @@ -27,7 +27,7 @@ jobs: steps: - name: 收集本周数据并生成周报正文 id: report - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const { owner, repo } = context.repo; @@ -220,7 +220,7 @@ jobs: discussions: write # 仅发布 job 需要写权限 steps: - name: 创建或追加周报 Discussion - uses: actions/github-script@v7 + uses: actions/github-script@v9 env: REPORT_BODY: ${{ needs.collect.outputs.reportBody }} DISCUSSION_TITLE: ${{ needs.collect.outputs.discussionTitle }}