From 510cf1f9d8f6d355e16397a12d34339aa11596ac Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Aug 2026 07:23:18 +0000 Subject: [PATCH] chore(ci): bump actions/github-script from 8 to 9 Bumps [actions/github-script](https://github.com/actions/github-script) from 8 to 9. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v8...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/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 77a6ac4..225866d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -71,7 +71,7 @@ jobs: - name: Check if release exists and update if needed id: check-existing - uses: actions/github-script@v8 + uses: actions/github-script@v9 env: TAG_NAME: ${{ steps.tag.outputs.TAG_NAME }} with: @@ -106,7 +106,7 @@ jobs: - name: Update existing release if: steps.check-existing.outputs.exists == 'true' - uses: actions/github-script@v8 + uses: actions/github-script@v9 env: TAG_NAME: ${{ steps.tag.outputs.TAG_NAME }} TAG_MESSAGE: ${{ steps.tag_message.outputs.MESSAGE }} @@ -147,7 +147,7 @@ jobs: - name: Create Release if: steps.check-existing.outputs.exists != 'true' - uses: actions/github-script@v8 + uses: actions/github-script@v9 env: TAG_NAME: ${{ steps.tag.outputs.TAG_NAME }} TAG_MESSAGE: ${{ steps.tag_message.outputs.MESSAGE }}