From 12a3330b78648f827b4e0d75f95cfefb29042d5f Mon Sep 17 00:00:00 2001 From: Salman Chishti Date: Mon, 16 Feb 2026 05:26:31 +0000 Subject: [PATCH] Upgrade GitHub Actions for Node 24 compatibility (#876) Signed-off-by: Salman Muin Kayser Chishti <13schishti@gmail.com> --- .github/workflows/claude-code-review.yml | 2 +- .github/workflows/claude.yml | 2 +- .github/workflows/convert-feature-requests.yml | 6 +++--- .github/workflows/summary.yml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/claude-code-review.yml b/.github/workflows/claude-code-review.yml index 205b0fe2..abd1b9b1 100644 --- a/.github/workflows/claude-code-review.yml +++ b/.github/workflows/claude-code-review.yml @@ -27,7 +27,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 1 diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml index 412cef9e..687f7cc5 100644 --- a/.github/workflows/claude.yml +++ b/.github/workflows/claude.yml @@ -26,7 +26,7 @@ jobs: actions: read # Required for Claude to read CI results on PRs steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 1 diff --git a/.github/workflows/convert-feature-requests.yml b/.github/workflows/convert-feature-requests.yml index c34b1fce..f23b78f6 100644 --- a/.github/workflows/convert-feature-requests.yml +++ b/.github/workflows/convert-feature-requests.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Get issue details and create discussion id: discussion - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | // Get issue details @@ -87,7 +87,7 @@ jobs: } - name: Comment on issue - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const issueNumber = ${{ steps.discussion.outputs.issue_number }}; @@ -105,7 +105,7 @@ jobs: console.log(`Added comment to issue #${issueNumber}`); - name: Close and lock issue - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const issueNumber = ${{ steps.discussion.outputs.issue_number }}; diff --git a/.github/workflows/summary.yml b/.github/workflows/summary.yml index 3486d862..731e3ca5 100644 --- a/.github/workflows/summary.yml +++ b/.github/workflows/summary.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Run AI inference id: inference