From 826b3df72b5dfb547e728326692cecef853d488f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Apr 2026 21:35:53 +0000 Subject: [PATCH] build(deps): bump actions/github-script from 7 to 9 Bumps [actions/github-script](https://github.com/actions/github-script) from 7 to 9. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...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/apex2-nightly-slow.yml | 4 ++-- .github/workflows/perf-smoke.yml | 4 ++-- .github/workflows/python-tests.yml | 4 ++-- .github/workflows/slow-regressions.yml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/apex2-nightly-slow.yml b/.github/workflows/apex2-nightly-slow.yml index 66fd51e7..487a5726 100644 --- a/.github/workflows/apex2-nightly-slow.yml +++ b/.github/workflows/apex2-nightly-slow.yml @@ -153,7 +153,7 @@ jobs: - name: Find baseline (previous successful run artifact) id: baseline - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const owner = context.repo.owner; @@ -197,7 +197,7 @@ jobs: - name: Download baseline snapshot_index.json if: steps.baseline.outputs.found == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const fs = require('fs'); diff --git a/.github/workflows/perf-smoke.yml b/.github/workflows/perf-smoke.yml index acafec20..2215335a 100644 --- a/.github/workflows/perf-smoke.yml +++ b/.github/workflows/perf-smoke.yml @@ -41,7 +41,7 @@ jobs: - name: Find baseline (previous successful run artifact) if: always() id: baseline - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const owner = context.repo.owner; @@ -90,7 +90,7 @@ jobs: - name: Download baseline criterion artifact if: steps.baseline.outputs.found == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const fs = require('fs'); diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 30e6fd06..aa934280 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -435,7 +435,7 @@ jobs: - name: Find unbinned baseline artifact if: always() id: unbinned_baseline - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const owner = context.repo.owner; @@ -484,7 +484,7 @@ jobs: - name: Download baseline validation artifact if: steps.unbinned_baseline.outputs.found == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const fs = require('fs'); diff --git a/.github/workflows/slow-regressions.yml b/.github/workflows/slow-regressions.yml index 0fde0363..7193b9d2 100644 --- a/.github/workflows/slow-regressions.yml +++ b/.github/workflows/slow-regressions.yml @@ -120,7 +120,7 @@ jobs: - name: Find baseline (previous successful run artifact) if: always() id: baseline - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const owner = context.repo.owner; @@ -169,7 +169,7 @@ jobs: - name: Download baseline artifact if: steps.baseline.outputs.found == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const fs = require('fs');