From 25a1d19be8347bd2c92364aaa86ac41be0fca030 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 Aug 2026 18:10:13 +0000 Subject: [PATCH] chore(actions)(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/backend-deploy-preview.yml | 2 +- .github/workflows/duplicate-issue-checker.yml | 2 +- .github/workflows/frontend-deploy-preview.yml | 2 +- .github/workflows/pr-assigned-conflict.yml | 2 +- .github/workflows/pr-issue-link-check.yml | 2 +- .github/workflows/pr-merged-thank-you.yml | 2 +- .github/workflows/pr-thank-you.yml | 2 +- .github/workflows/pr-unassigned-check.yml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/backend-deploy-preview.yml b/.github/workflows/backend-deploy-preview.yml index 7cb2fdee..8e4742ad 100644 --- a/.github/workflows/backend-deploy-preview.yml +++ b/.github/workflows/backend-deploy-preview.yml @@ -86,7 +86,7 @@ jobs: shell: bash - name: Comment preview URL on PR - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | diff --git a/.github/workflows/duplicate-issue-checker.yml b/.github/workflows/duplicate-issue-checker.yml index 33770217..a8328697 100644 --- a/.github/workflows/duplicate-issue-checker.yml +++ b/.github/workflows/duplicate-issue-checker.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check for duplicate issues - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | diff --git a/.github/workflows/frontend-deploy-preview.yml b/.github/workflows/frontend-deploy-preview.yml index a59a0f36..83929c11 100644 --- a/.github/workflows/frontend-deploy-preview.yml +++ b/.github/workflows/frontend-deploy-preview.yml @@ -94,7 +94,7 @@ jobs: - name: Comment preview URL on PR if: env.CAN_COMMENT == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v9 env: # `steps` is a workflow context, not a variable in the script sandbox: # `steps?.vercel?.outputs?.preview_url` threw `ReferenceError: steps is diff --git a/.github/workflows/pr-assigned-conflict.yml b/.github/workflows/pr-assigned-conflict.yml index 58e23be3..518ba9da 100644 --- a/.github/workflows/pr-assigned-conflict.yml +++ b/.github/workflows/pr-assigned-conflict.yml @@ -12,7 +12,7 @@ jobs: issues: write steps: - name: Check if issue is assigned to someone else - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const pr = context.payload.pull_request; diff --git a/.github/workflows/pr-issue-link-check.yml b/.github/workflows/pr-issue-link-check.yml index 847c1fbc..136cb98e 100644 --- a/.github/workflows/pr-issue-link-check.yml +++ b/.github/workflows/pr-issue-link-check.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Check PR body for issue reference - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | diff --git a/.github/workflows/pr-merged-thank-you.yml b/.github/workflows/pr-merged-thank-you.yml index d5a64569..2a4dda76 100644 --- a/.github/workflows/pr-merged-thank-you.yml +++ b/.github/workflows/pr-merged-thank-you.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Post Thank You Comment - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | diff --git a/.github/workflows/pr-thank-you.yml b/.github/workflows/pr-thank-you.yml index dfb42ad6..ed3d3fcb 100644 --- a/.github/workflows/pr-thank-you.yml +++ b/.github/workflows/pr-thank-you.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Check assignee and post welcome comment - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | diff --git a/.github/workflows/pr-unassigned-check.yml b/.github/workflows/pr-unassigned-check.yml index 8c6b1f41..acaa757c 100644 --- a/.github/workflows/pr-unassigned-check.yml +++ b/.github/workflows/pr-unassigned-check.yml @@ -12,7 +12,7 @@ jobs: issues: write steps: - name: Check for unassigned issues - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const prBody = context.payload.pull_request.body;