From fc75ec00b552389ca6541651e3c0efa73424c565 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 10 Apr 2026 05:12:46 +0000 Subject: [PATCH] Update actions/github-script action to v9 | datasource | package | from | to | | ----------- | --------------------- | ---- | -- | | github-tags | actions/github-script | v8 | v9 | Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/benchmark.yml | 2 +- .github/workflows/docs-build.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index fbf52c42..9d757af0 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -78,7 +78,7 @@ jobs: cat bench.txt >> $GITHUB_ENV echo 'EOF' >> $GITHUB_ENV - - uses: actions/github-script@v8 + - uses: actions/github-script@v9 if: ${{ success() || (failure() && steps.bench.conclusion == 'failure') }} with: script: | diff --git a/.github/workflows/docs-build.yml b/.github/workflows/docs-build.yml index e84f2148..61951c78 100644 --- a/.github/workflows/docs-build.yml +++ b/.github/workflows/docs-build.yml @@ -39,14 +39,14 @@ jobs: - name: Normalize current versions id: current - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: return context.ref.match(/([0-9]+\.[0-9]+)\.(x|[0-9]+)/i)[1]; result-encoding: string - name: Normalize latest versions id: latest - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: return "${{steps.latest_release.outputs.release}}".match(/([0-9]+\.[0-9]+)\.[0-9]+/i)[1]; result-encoding: string