From e987ce1ed1422abac7d3177309257ea01eacc737 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Oct 2025 11:49:10 +0000 Subject: [PATCH] ci(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/release.yml | 2 +- .github/workflows/validate-docs.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 13af679..cf3d028 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -250,7 +250,7 @@ jobs: steps: - name: Create announcement - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const version = '${{ needs.create-release.outputs.version }}'; diff --git a/.github/workflows/validate-docs.yml b/.github/workflows/validate-docs.yml index 3c8044b..4253605 100644 --- a/.github/workflows/validate-docs.yml +++ b/.github/workflows/validate-docs.yml @@ -48,7 +48,7 @@ jobs: - name: Comment PR with build status if: always() - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const status = '${{ job.status }}' === 'success' ? '✅ Documentation builds successfully' : '❌ Documentation build failed';