From 924e6af1e28bc1f3ccc8f5f6a2e2e59879e6c999 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 15:29:52 +0000 Subject: [PATCH] chore(deps): 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/deploy-gh-pages.yml | 2 +- .github/workflows/docker-build-push.yml | 2 +- .github/workflows/release.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy-gh-pages.yml b/.github/workflows/deploy-gh-pages.yml index c42bde1109b..a2e27c60c25 100644 --- a/.github/workflows/deploy-gh-pages.yml +++ b/.github/workflows/deploy-gh-pages.yml @@ -22,7 +22,7 @@ jobs: with: ref: main - name: 'Download build artifact' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({ diff --git a/.github/workflows/docker-build-push.yml b/.github/workflows/docker-build-push.yml index eb33994f905..c8f7b0812c3 100644 --- a/.github/workflows/docker-build-push.yml +++ b/.github/workflows/docker-build-push.yml @@ -35,7 +35,7 @@ jobs: run: npm run build:app - name: Determine released version - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c9cf7f3fbb9..bf20ced9452 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,7 +36,7 @@ jobs: - name: Nothing to release if: ${{ env.NEXT_RELEASE_VERSION == '' }} - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | core.setFailed('Nothing to release') @@ -69,7 +69,7 @@ jobs: - name: Release failed if: ${{ steps.semantic.outputs.new_release_published == 'false' }} - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | core.setFailed('Release failed')