From 6ca3a80af18bd5e434c33551861dc1745467bbdc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 06:12:58 +0000 Subject: [PATCH] chore(ci): 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/cleanup-preview.yml | 2 +- .github/workflows/dependabot-auto-merge.yml | 4 ++-- .github/workflows/deploy-preview.yml | 2 +- .github/workflows/scheduled-checks.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cleanup-preview.yml b/.github/workflows/cleanup-preview.yml index bd65ee04..87c3ea0f 100644 --- a/.github/workflows/cleanup-preview.yml +++ b/.github/workflows/cleanup-preview.yml @@ -58,7 +58,7 @@ jobs: continue-on-error: true - name: Comment Cleanup Status - uses: actions/github-script@v8 + uses: actions/github-script@v9 env: SHOULD_CLEANUP: ${{ steps.cleanup_guard.outputs.should_cleanup }} SKIP_REASON: ${{ steps.cleanup_guard.outputs.reason }} diff --git a/.github/workflows/dependabot-auto-merge.yml b/.github/workflows/dependabot-auto-merge.yml index cd69d642..119bb285 100644 --- a/.github/workflows/dependabot-auto-merge.yml +++ b/.github/workflows/dependabot-auto-merge.yml @@ -66,7 +66,7 @@ jobs: - name: Comment on major updates if: steps.metadata.outputs.update-type == 'version-update:semver-major' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | github.rest.issues.createComment({ @@ -87,7 +87,7 @@ jobs: }) - name: Label based on update type - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const updateType = '${{ steps.metadata.outputs.update-type }}'; diff --git a/.github/workflows/deploy-preview.yml b/.github/workflows/deploy-preview.yml index cfc9dfd6..c17273f2 100644 --- a/.github/workflows/deploy-preview.yml +++ b/.github/workflows/deploy-preview.yml @@ -121,7 +121,7 @@ jobs: - name: Comment Preview URL if: github.event_name == 'pull_request' - uses: actions/github-script@v8 + uses: actions/github-script@v9 env: PREVIEW_URL: ${{ steps.preview_meta.outputs.preview_url }} SHOULD_DEPLOY: ${{ steps.deploy_guard.outputs.should_deploy }} diff --git a/.github/workflows/scheduled-checks.yml b/.github/workflows/scheduled-checks.yml index 2c1ab7e3..518be923 100644 --- a/.github/workflows/scheduled-checks.yml +++ b/.github/workflows/scheduled-checks.yml @@ -38,7 +38,7 @@ jobs: - name: Create issue if URLs are broken if: failure() - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const title = '🔗 Broken URLs detected in manifests';