Skip to content

Commit 8d33c2f

Browse files
committed
Upgrade GitHub Actions for Node 24 compatibility
1 parent fb9dcf1 commit 8d33c2f

19 files changed

+28
-28
lines changed

.github/workflows/backport-prs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
contains(github.event.comment.body, '/backport')
2828
)
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v6
3131
- name: Create backport pull requests
3232
uses: korthout/backport-action@v3
3333
with:

.github/workflows/build-and-test-python-wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
workflow: ${{ steps.build-workflow.outputs.workflow }}
2020
steps:
2121
- name: Checkout repo
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v6
2323
with:
2424
persist-credentials: false
2525
- name: Build workflow
@@ -102,7 +102,7 @@ jobs:
102102
runs-on: ubuntu-latest
103103
steps:
104104
- name: Checkout repo
105-
uses: actions/checkout@v4
105+
uses: actions/checkout@v6
106106
with:
107107
persist-credentials: false
108108

.github/workflows/build-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
fi
7171
7272
- name: Checkout
73-
uses: actions/checkout@v4
73+
uses: actions/checkout@v6
7474
with:
7575
persist-credentials: false
7676

.github/workflows/build-matx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
contents: read
4646
steps:
4747
- name: Checkout repo
48-
uses: actions/checkout@v4
48+
uses: actions/checkout@v6
4949
with:
5050
fetch-depth: 0
5151
persist-credentials: false

.github/workflows/build-pytorch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
contents: read
3636
steps:
3737
- name: Checkout repo
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v6
3939
with:
4040
fetch-depth: 0
4141
persist-credentials: false

.github/workflows/build-rapids.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
contents: read
7272
steps:
7373
- name: Checkout repo
74-
uses: actions/checkout@v4
74+
uses: actions/checkout@v6
7575
with:
7676
fetch-depth: 0
7777
persist-credentials: false

.github/workflows/ci-workflow-nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
workflow: ${{ steps.build-workflow.outputs.workflow }}
4141
steps:
4242
- name: Checkout repo
43-
uses: actions/checkout@v4
43+
uses: actions/checkout@v6
4444
with:
4545
persist-credentials: false
4646
- name: Build workflow
@@ -126,7 +126,7 @@ jobs:
126126
runs-on: ubuntu-latest
127127
steps:
128128
- name: Checkout repo
129-
uses: actions/checkout@v4
129+
uses: actions/checkout@v6
130130
with:
131131
persist-credentials: false
132132

.github/workflows/ci-workflow-pull-request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
output matx_enabled "${{ !contains(github.event.head_commit.message, '[skip-matx]') && !fromJSON(env.skip_tpt) }}"
6363
output pytorch_enabled "${{ !contains(github.event.head_commit.message, '[skip-pytorch]') && !fromJSON(env.skip_tpt) }}"
6464
- name: Checkout repo
65-
uses: actions/checkout@v4
65+
uses: actions/checkout@v6
6666
with:
6767
persist-credentials: false
6868
- name: Lookup PR info
@@ -182,7 +182,7 @@ jobs:
182182
runs-on: ubuntu-latest
183183
steps:
184184
- name: Checkout repo
185-
uses: actions/checkout@v4
185+
uses: actions/checkout@v6
186186
with:
187187
persist-credentials: false
188188

.github/workflows/ci-workflow-weekly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
workflow: ${{ steps.build-workflow.outputs.workflow }}
4040
steps:
4141
- name: Checkout repo
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v6
4343
with:
4444
persist-credentials: false
4545
- name: Build workflow
@@ -125,7 +125,7 @@ jobs:
125125
runs-on: ubuntu-latest
126126
steps:
127127
- name: Checkout repo
128-
uses: actions/checkout@v4
128+
uses: actions/checkout@v6
129129
with:
130130
persist-credentials: false
131131

.github/workflows/git-bisect.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ jobs:
214214
contents: read
215215
steps:
216216
- name: Checkout repository
217-
uses: actions/checkout@v4
217+
uses: actions/checkout@v6
218218
with:
219219
persist-credentials: false
220220
fetch-depth: 0 # FULL history

0 commit comments

Comments
 (0)