@@ -37,12 +37,12 @@ jobs:
3737 runs-on : ubuntu-latest
3838 timeout-minutes : 10
3939 steps :
40- - uses : actions/checkout@v4
40+ - uses : actions/checkout@v6
4141
42- - name : Set up Python 3.11
43- uses : actions/setup-python@v4
42+ - name : Set up Python 3.13
43+ uses : actions/setup-python@v6
4444 with :
45- python-version : " 3.11 "
45+ python-version : " 3.13 "
4646
4747 - name : Install development dependencies
4848 run : |
@@ -58,12 +58,12 @@ jobs:
5858 runs-on : 4-core-ubuntu-gpu-t4
5959 timeout-minutes : 120
6060 steps :
61- - uses : actions/checkout@v4
61+ - uses : actions/checkout@v6
6262
63- - name : Set up Python 3.11
64- uses : actions/setup-python@v4
63+ - name : Set up Python 3.13
64+ uses : actions/setup-python@v6
6565 with :
66- python-version : " 3.11 "
66+ python-version : " 3.13 "
6767
6868 - name : Get daily cache timestamp
6969 id : daily-cache
@@ -82,12 +82,12 @@ jobs:
8282 echo "Using weekly cache stamp: $WEEK_STAMP"
8383
8484 - name : Cache pip dependencies
85- uses : actions/cache@v3
85+ uses : actions/cache@v5
8686 with :
8787 path : ~/.cache/pip
88- key : ${{ runner.os }}-pip-3.11 -${{ steps.daily-cache.outputs.date }}
88+ key : ${{ runner.os }}-pip-3.13 -${{ steps.daily-cache.outputs.date }}
8989 restore-keys : |
90- ${{ runner.os }}-pip-3.11 -
90+ ${{ runner.os }}-pip-3.13 -
9191
9292 - name : Get Triton latest commit
9393 id : triton-commit
@@ -116,7 +116,7 @@ jobs:
116116 fi
117117
118118 - name : Cache Triton source and build
119- uses : actions/cache@v3
119+ uses : actions/cache@v5
120120 with :
121121 path : |
122122 /tmp/triton
@@ -129,7 +129,7 @@ jobs:
129129 - name : Setup environment
130130 env :
131131 CONDA_ENV : tritonparse
132- PYTHON_VERSION : " 3.11 "
132+ PYTHON_VERSION : " 3.13 "
133133 CUDA_VERSION : " 12.8"
134134 run : |
135135 bash .ci/setup.sh
@@ -159,12 +159,12 @@ jobs:
159159 runs-on : 4-core-ubuntu-gpu-t4
160160 timeout-minutes : 120
161161 steps :
162- - uses : actions/checkout@v4
162+ - uses : actions/checkout@v6
163163
164- - name : Set up Python 3.11
165- uses : actions/setup-python@v4
164+ - name : Set up Python 3.13
165+ uses : actions/setup-python@v6
166166 with :
167- python-version : " 3.11 "
167+ python-version : " 3.13 "
168168
169169 - name : Get daily cache timestamp
170170 id : daily-cache
@@ -175,17 +175,17 @@ jobs:
175175 echo "Using daily cache stamp: $DATE_STAMP"
176176
177177 - name : Cache pip dependencies
178- uses : actions/cache@v3
178+ uses : actions/cache@v5
179179 with :
180180 path : ~/.cache/pip
181- key : ${{ runner.os }}-pip-3.11 -${{ steps.daily-cache.outputs.date }}
181+ key : ${{ runner.os }}-pip-3.13 -${{ steps.daily-cache.outputs.date }}
182182 restore-keys : |
183- ${{ runner.os }}-pip-3.11 -
183+ ${{ runner.os }}-pip-3.13 -
184184
185185 - name : Setup environment
186186 env :
187187 CONDA_ENV : tritonparse-pip
188- PYTHON_VERSION : " 3.11 "
188+ PYTHON_VERSION : " 3.13 "
189189 CUDA_VERSION : " 12.8"
190190 run : |
191191 bash .ci/setup.sh
0 commit comments