From d0e01ef96f4b2a29f0fa90135aace64882405132 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 15:05:01 +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/cargo-update.yml | 2 +- .github/workflows/release.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cargo-update.yml b/.github/workflows/cargo-update.yml index a03adb02e..823b157d5 100644 --- a/.github/workflows/cargo-update.yml +++ b/.github/workflows/cargo-update.yml @@ -36,7 +36,7 @@ jobs: # The PR may already exist (e.g., created in previous week and not merged yet) so we # allow it here and check in the next step so workflow failures will be extraordinary continue-on-error: true - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ secrets.GH_RELEASE_PAT }} script: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 642499057..0688cb85f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -138,7 +138,7 @@ jobs: retention-days: 7 - name: Create release notes - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const fs = require("node:fs"); @@ -199,7 +199,7 @@ jobs: - name: Create GitHub release id: create_release - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: # The response is explicitly returned here so it will be available for other steps script: | @@ -242,7 +242,7 @@ jobs: # Don't trigger for pre-releases if: ${{ !contains(github.ref, 'rc') }} # Reference: https://docs.github.com/en/rest/repos/repos#create-a-repository-dispatch-event - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ secrets.GH_RELEASE_PAT }} script: | @@ -258,7 +258,7 @@ jobs: # Don't trigger for pre-releases if: ${{ !contains(github.ref, 'rc') }} # Reference: https://docs.github.com/en/rest/repos/repos#create-a-repository-dispatch-event - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ secrets.GH_RELEASE_PAT }} script: |