From c2be07500b189585c26f1e0660d17c3190e7d321 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 08:18:41 +0000 Subject: [PATCH] Bump actions/github-script from 7.0.1 to 8.0.0 Bumps [actions/github-script](https://github.com/actions/github-script) from 7.0.1 to 8.0.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7.0.1...v8.0.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/resyntax-submit-review.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/resyntax-submit-review.yml b/.github/workflows/resyntax-submit-review.yml index 2366c9b73..799dc02f4 100644 --- a/.github/workflows/resyntax-submit-review.yml +++ b/.github/workflows/resyntax-submit-review.yml @@ -27,7 +27,7 @@ jobs: # This uses a github script instead of the download-artifact action because # that action doesn't work for artifacts uploaded by other workflows. See # https://github.com/actions/download-artifact/issues/130 for more info. - uses: actions/github-script@v7.0.1 + uses: actions/github-script@v8.0.0 with: script: | var artifacts = await github.rest.actions.listWorkflowRunArtifacts({ @@ -48,7 +48,7 @@ jobs: fs.writeFileSync('${{github.workspace}}/resyntax-review.zip', Buffer.from(download.data)); - run: unzip resyntax-review.zip - name: Create pull request review - uses: actions/github-script@v7.0.1 + uses: actions/github-script@v8.0.0 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: |