From f449254379320d31a567fa6b24f9a758a62cb133 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 20 Feb 2026 00:34:28 +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-review.yml | 12 ++++++------ .github/workflows/auto-label.yml | 2 +- .github/workflows/remotion-pr-preview.yml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/agent-review.yml b/.github/workflows/agent-review.yml index 2652d03..6e55af9 100644 --- a/.github/workflows/agent-review.yml +++ b/.github/workflows/agent-review.yml @@ -33,7 +33,7 @@ jobs: outputs: category: ${{ steps.classify.outputs.category }} steps: - - uses: actions/github-script@v7 + - uses: actions/github-script@v8 id: classify with: script: | @@ -157,7 +157,7 @@ jobs: - name: Extract verdict id: extract if: always() - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | // Poll for the review comment @@ -199,7 +199,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Create check run - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const verdict = '${{ needs.review-pr.outputs.verdict }}' || 'REQUEST_CHANGES'; @@ -233,7 +233,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Wait for other checks - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const prNumber = context.payload.pull_request.number; @@ -293,7 +293,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Close PR - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | await github.rest.pulls.update({ @@ -394,7 +394,7 @@ jobs: - name: Upsert PR comment if: github.event_name == 'pull_request_review' && github.event.pull_request.head.repo.fork == false - uses: actions/github-script@v7 + uses: actions/github-script@v8 env: SUMMARY_PATH: ${{ runner.temp }}/agent-trust-summary.json with: diff --git a/.github/workflows/auto-label.yml b/.github/workflows/auto-label.yml index 68ddd40..927ad30 100644 --- a/.github/workflows/auto-label.yml +++ b/.github/workflows/auto-label.yml @@ -24,7 +24,7 @@ jobs: if: github.event_name == 'issues' runs-on: ubuntu-latest steps: - - uses: actions/github-script@v7 + - uses: actions/github-script@v8 with: script: | const title = (context.payload.issue.title || '').toLowerCase(); diff --git a/.github/workflows/remotion-pr-preview.yml b/.github/workflows/remotion-pr-preview.yml index 715ed21..f0ec758 100644 --- a/.github/workflows/remotion-pr-preview.yml +++ b/.github/workflows/remotion-pr-preview.yml @@ -119,7 +119,7 @@ jobs: - name: Upsert PR comment if: ${{ github.event.pull_request.head.repo.fork == false }} - uses: actions/github-script@v7 + uses: actions/github-script@v8 env: OUTPUT_FILE: ${{ steps.props.outputs.output_file }} STILL_FILE: ${{ steps.props.outputs.still_file }}