From 3dab215165bc04b8cf9738c3aa471b26813a09dc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2026 17:50:30 +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/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-thank-you.yml | 2 +- .github/workflows/pr-unassigned-check.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) 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 2f3fed4f..c5768952 100644 --- a/.github/workflows/frontend-deploy-preview.yml +++ b/.github/workflows/frontend-deploy-preview.yml @@ -78,7 +78,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/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-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;