Update GitHub Actions workflow for issue comments (#41142)

Updated checkout action version to v6 to support node 24 in github actions. Node 20 has been disabled june 2026.

piercosta committed Jul 24, 2026 at 20:08 UTC cc03302422a509d91ab23a8366b1f6b9232c0001
1 file changed +2 -2
.github/workflows/new_issue_comment.yml
+2 -2
@@ -14,10 +14,10 @@ jobs:
14 if: ${{ !github.event.issue.pull_request && github.event.issue.user.id == github.event.comment.user.id }}
15 steps:
16 - name: Checkout repo
17 - uses: actions/checkout@v4
17 + uses: actions/checkout@v6
18
19 - uses: ./.github/actions/triage
20 with:
21 issue: '${{ github.event.issue.number }}'
22 comment: '${{ github.event.comment.id }}'
23 - token: ${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file
23 + token: ${{ secrets.GITHUB_TOKEN }}