From 5b164b6bb57b93861bd8a56361f850b6f3cbec6f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Oct 2025 01:02:25 +0000 Subject: [PATCH] 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/trademark-cla-approval.yml | 2 +- .github/workflows/trademark-cla-notice.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/trademark-cla-approval.yml b/.github/workflows/trademark-cla-approval.yml index e0de4857c03..bd76de94146 100644 --- a/.github/workflows/trademark-cla-approval.yml +++ b/.github/workflows/trademark-cla-approval.yml @@ -22,7 +22,7 @@ jobs: - name: Process CLA Agreement Comment id: process-comment - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ steps.generate-token.outputs.token || secrets.GITHUB_TOKEN }} script: | diff --git a/.github/workflows/trademark-cla-notice.yml b/.github/workflows/trademark-cla-notice.yml index 946fab6db16..c8f8c9a3bac 100644 --- a/.github/workflows/trademark-cla-notice.yml +++ b/.github/workflows/trademark-cla-notice.yml @@ -36,7 +36,7 @@ jobs: - name: Check if docs changed id: docs-changed if: github.event_name == 'pull_request_target' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ steps.generate-token.outputs.token || secrets.GITHUB_TOKEN }} script: | @@ -69,7 +69,7 @@ jobs: - name: Get PR info for comment events id: pr-info if: github.event_name == 'issue_comment' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ secrets.GITHUB_PAT || secrets.GITHUB_TOKEN }} script: | @@ -121,7 +121,7 @@ jobs: - name: Post CLA comment and block merge if: github.event_name == 'pull_request_target' && steps.docs-changed.outputs.requires_cla == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ steps.generate-token.outputs.token || secrets.GITHUB_TOKEN }} script: |