From c190086ad0e3f9b2f40b75dbbfd328ac276f0f94 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 09:34:56 +0000 Subject: [PATCH] chore(ci): 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/ci.yml | 2 +- .github/workflows/dependabot-auto-merge.yml | 2 +- .github/workflows/performance.yml | 4 ++-- .github/workflows/pr-validation.yml | 2 +- .github/workflows/security.yml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 256984b..212cafe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -285,7 +285,7 @@ jobs: echo "✅ CI pipeline passed successfully" - name: Create commit status - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const state = '${{ needs.quality.result }}' === 'success' && diff --git a/.github/workflows/dependabot-auto-merge.yml b/.github/workflows/dependabot-auto-merge.yml index b788c1e..84c9062 100644 --- a/.github/workflows/dependabot-auto-merge.yml +++ b/.github/workflows/dependabot-auto-merge.yml @@ -47,7 +47,7 @@ jobs: if: | steps.metadata.outputs.update-type == 'version-update:semver-patch' || steps.metadata.outputs.update-type == 'version-update:semver-minor' - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const updateType = '${{ steps.metadata.outputs.update-type }}'; diff --git a/.github/workflows/performance.yml b/.github/workflows/performance.yml index 9a385eb..b68d265 100644 --- a/.github/workflows/performance.yml +++ b/.github/workflows/performance.yml @@ -138,7 +138,7 @@ jobs: - name: Comment PR with performance results if: steps.compare.outputs.has-comparison == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const fs = require('fs'); @@ -236,7 +236,7 @@ jobs: - name: Create issue on regression if: failure() - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | github.rest.issues.create({ diff --git a/.github/workflows/pr-validation.yml b/.github/workflows/pr-validation.yml index bd2ce71..ad3d259 100644 --- a/.github/workflows/pr-validation.yml +++ b/.github/workflows/pr-validation.yml @@ -291,7 +291,7 @@ jobs: - name: Comment PR with results if: github.event_name == 'pull_request' - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const typeCheck = '${{ needs.type-check.result }}'; diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index 1391164..115f98d 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -313,7 +313,7 @@ jobs: - name: Comment PR with security results if: github.event_name == 'pull_request' - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const dependencyScan = '${{ needs.dependency-scan.result }}';