Skip to content

Commit 795c7ec

Browse files
salmanmkcchristopherbate
authored andcommitted
Upgrade GitHub Actions for Node 24 compatibility
1 parent b001c46 commit 795c7ec

8 files changed

+12
-12
lines changed

.github/workflows/mlir-tensorrt-build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
steps:
4646
# Checkout the repository
4747
- name: Checkout TensorRT-Incubator
48-
uses: actions/checkout@v5
48+
uses: actions/checkout@v6
4949
with:
5050
fetch-depth: 5
5151

.github/workflows/mlir-tensorrt-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
outputs:
3232
has_changes: ${{ steps.diff.outputs.has_changes }}
3333
steps:
34-
- uses: actions/checkout@v5
34+
- uses: actions/checkout@v6
3535
with:
3636
fetch-depth: 5
3737
- name: Compute diff under mlir-tensorrt/**
@@ -56,7 +56,7 @@ jobs:
5656
matrix: ${{ steps.generate-matrix.outputs.matrix }}
5757
channel: ${{ steps.generate-matrix.outputs.channel }}
5858
steps:
59-
- uses: actions/checkout@v5
59+
- uses: actions/checkout@v6
6060
with:
6161
fetch-depth: 5
6262
- name: Run lint checks

.github/workflows/post-merge-container-update-mlir-tensorrt.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
matrix: ${{ steps.set-matrix.outputs.matrix }}
2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v6
2828

2929
- name: Discover container configurations
3030
id: set-matrix
@@ -100,7 +100,7 @@ jobs:
100100
sudo apt-get autoclean -y
101101
102102
- name: Checkout repository
103-
uses: actions/checkout@v5
103+
uses: actions/checkout@v6
104104

105105
- name: Show disk usage
106106
run: df . -h

.github/workflows/post-merge-container-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
run: df . -h
5151

5252
- name: Checkout repository
53-
uses: actions/checkout@v4
53+
uses: actions/checkout@v6
5454

5555
# Install the cosign tool
5656
# https://github.com/sigstore/cosign-installer

.github/workflows/post-merge-package-index-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- ${{ github.workspace }}/tripy:/tripy
3030
options: --gpus all
3131
steps:
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v6
3333

3434
- name: build-docs
3535
run: |

.github/workflows/tripy-l0.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: tripy-self-hosted
2020

2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v6
2323
- uses: dorny/paths-filter@v3
2424
id: filter
2525
with:

.github/workflows/tripy-l1.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- ${{ github.workspace }}/tripy:/tripy
2525
options: --gpus all
2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v6
2828

2929
- name: build-docs
3030
run: |

.github/workflows/tripy-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- ${{ github.workspace }}/tripy:/tripy
3131
options: --gpus all
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v6
3434

3535
- name: build-package
3636
run: |
@@ -51,7 +51,7 @@ jobs:
5151
pytest --cov=nvtripy/ --cov-config=.coveragerc tests/ -v -m "not l1" -n 4 --durations=15 --ignore tests/performance
5252
5353
- name: Upload distributions
54-
uses: actions/upload-artifact@v4
54+
uses: actions/upload-artifact@v6
5555
with:
5656
name: release-dists
5757
path: /tripy/dist/
@@ -86,7 +86,7 @@ jobs:
8686

8787
steps:
8888
- name: Retrieve release distributions
89-
uses: actions/download-artifact@v4
89+
uses: actions/download-artifact@v7
9090
with:
9191
name: release-dists
9292
path: dist/

0 commit comments

Comments
 (0)