[None][chore] Upgrade GitHub Actions for Node 24 compatibility (#10045)

Signed-off-by: Salman Muin Kayser Chishti <13schishti@gmail.com>
This commit is contained in:
Salman Chishti 2025-12-17 17:44:09 +00:00 committed by GitHub
parent f7e245668b
commit cb5cd4376e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with 14 additions and 14 deletions

View File

@ -11,10 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v6
- name: Get assignee
uses: actions/github-script@v6
uses: actions/github-script@v8
id: get-assignee
with:
github-token: ${{secrets.GITHUB_TOKEN}}

View File

@ -14,7 +14,7 @@ jobs:
pull-requests: write
steps:
- uses: actions/stale@v9
- uses: actions/stale@v10
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'Issue has not received an update in over 14 days. Adding stale label.'

View File

@ -356,7 +356,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v6
with:
repository: ${{ fromJson(needs.Authorization.outputs.args).repo }}
ref: ${{ fromJson(needs.Authorization.outputs.args).ref }}

View File

@ -36,7 +36,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Add bot help comment
uses: actions/github-script@v6
uses: actions/github-script@v8
with:
script: |
const helpMessage = "" +

View File

@ -34,7 +34,7 @@ jobs:
if: github.event_name == 'workflow_dispatch'
steps:
- name: Update commit status
uses: actions/github-script@v6
uses: actions/github-script@v8
with:
script: |
state = 'pending'
@ -60,7 +60,7 @@ jobs:
with:
paths: results/**/results*.xml
- name: Update commit status
uses: actions/github-script@v6
uses: actions/github-script@v8
with:
script: |
github.rest.repos.createCommitStatus({

View File

@ -17,10 +17,10 @@ jobs:
if: github.repository == 'NVIDIA/TensorRT-LLM'
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v6
with:
python-version: '3.x'

View File

@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout private action repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: NVIDIA/goggles_action
path: ./.github/actions/goggles_action # local path to store the action

View File

@ -59,10 +59,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.10'

View File

@ -29,11 +29,11 @@ jobs:
name: Pre-commit Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.ref || github.ref }}
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: '3.12'
cache: 'pip'