From 9c8ee3bfee875a5dc8f01328597bbba703d68dad Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 10 Apr 2026 00:27:58 +0000 Subject: [PATCH] Update actions/github-script action to v9 Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/publish.yml | 14 +++++++------- .github/workflows/test.yml | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 92206afd..7d8675aa 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -29,7 +29,7 @@ jobs: #-------- Info gathering and checks - name: Set pushed tag id: set-tag - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: result-encoding: string script: | @@ -46,7 +46,7 @@ jobs: fi - name: Determine whether releasing the master branch id: set-is-master-branch - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: result-encoding: string script: | @@ -62,7 +62,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Determine name of stable branch for pushed tag id: set-stable-branch - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: result-encoding: string script: | @@ -71,7 +71,7 @@ jobs: return result - name: Determine whether releasing stable branch for pushed tag id: set-is-stable-branch - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: result-encoding: string script: | @@ -100,7 +100,7 @@ jobs: fi - name: Set update version id: set-update-version - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: result-encoding: string script: | @@ -181,7 +181,7 @@ jobs: - name: Create new stable branch when releasing master branch if: steps.set-is-master-branch.outputs.result == 'true' id: create-stable-branch - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | github.rest.git.createRef({ @@ -200,7 +200,7 @@ jobs: - name: Retry create new stable branch when releasing master branch if HTTP error 422 if: steps.set-is-master-branch.outputs.result == 'true' && steps.create-stable-branch.outputs.status == 422 id: create-stable-branch-2 - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | github.rest.git.createRef({ diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index aefcdd54..bd2e6325 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -113,7 +113,7 @@ jobs: steps: - name: Set run type (normal, scheduled, release) id: set-run-type - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: result-encoding: string script: |