From 47c74ca2d58439317a0ce6b49e9f10d7f72c3884 Mon Sep 17 00:00:00 2001 From: Anand Chowdhary Date: Mon, 31 Aug 2026 09:05:33 +0000 Subject: [PATCH] :arrow_up: Bump actions/github-script from 8 to 9 --- .github/workflows/pull-request.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 060ba5a..23c059f 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Generate branch name - uses: actions/github-script@v8 + uses: actions/github-script@v9 id: set-branch-name with: script: | @@ -41,7 +41,7 @@ jobs: PULL_REQUEST_TITLE: ${{ steps.set-branch-name.outputs.result }} run: printf 'PULL_REQUEST_TITLE=%s\n' "$PULL_REQUEST_TITLE" >> "$GITHUB_ENV" - name: Generate PR body - uses: actions/github-script@v8 + uses: actions/github-script@v9 id: set-pr-body with: script: | @@ -56,7 +56,7 @@ jobs: PULL_REQUEST_BODY: ${{ steps.set-pr-body.outputs.result }} run: printf 'PULL_REQUEST_BODY=%s\n' "$PULL_REQUEST_BODY" >> "$GITHUB_ENV" - name: Generate PR draft - uses: actions/github-script@v8 + uses: actions/github-script@v9 id: set-pr-draft with: script: | @@ -66,7 +66,7 @@ jobs: PULL_REQUEST_DRAFT: ${{ steps.set-pr-draft.outputs.result }} run: printf 'PULL_REQUEST_DRAFT=%s\n' "$PULL_REQUEST_DRAFT" >> "$GITHUB_ENV" - name: Determine whether to merge - uses: actions/github-script@v8 + uses: actions/github-script@v9 id: should-pr with: github-token: ${{ secrets.GH_PAT || github.token }} @@ -77,7 +77,7 @@ jobs: context.payload.ref.startsWith("refs/heads/bug") ); - name: Create pull request - uses: actions/github-script@v8 + uses: actions/github-script@v9 if: steps.should-pr.outputs.result == 'true' with: github-token: ${{ secrets.GH_PAT || github.token }}