From 4e02bd4dacac99f001dc9711fa2e04b9b8d19554 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 11:39:07 +0000 Subject: [PATCH] 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-check.yml | 4 ++-- .github/workflows/release-publish.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-check.yml b/.github/workflows/release-check.yml index fb6bf60..fcdb6a2 100644 --- a/.github/workflows/release-check.yml +++ b/.github/workflows/release-check.yml @@ -17,7 +17,7 @@ jobs: name: Retrieve PR information env: PULL_REQUEST: ${{ toJSON(github.event.pull_request) }} - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | let pr = JSON.parse(process.env.PULL_REQUEST); @@ -61,7 +61,7 @@ jobs: env: BRANCHES: ${{ inputs.branches }} BASE_REF: ${{ fromJSON(steps.pr.outputs.json).base.ref }} - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const branches = JSON.parse(process.env.BRANCHES); diff --git a/.github/workflows/release-publish.yml b/.github/workflows/release-publish.yml index 17e5859..cda03cb 100644 --- a/.github/workflows/release-publish.yml +++ b/.github/workflows/release-publish.yml @@ -33,7 +33,7 @@ jobs: env: BRANCHES: ${{ inputs.branches }} REF: ${{ github.ref }} - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const branches = JSON.parse(process.env.BRANCHES); @@ -53,7 +53,7 @@ jobs: REPOSITORY: ${{ github.repository }} QUERY: repository:${{ github.repository }} is:pr is:merged ${{ github.sha }} SHA: ${{ github.sha }} - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const [owner, repo] = process.env.REPOSITORY.split('/');