Skip to content

Commit a65a985

Browse files
Update workflow dependencies (#1824)
1 parent 190d3e2 commit a65a985

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

.github/workflows/python-package.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,17 +74,16 @@ jobs:
7474
- os: windows-2025
7575
arch: x86_64
7676
cuda_version:
77-
["11.8.0", "12.0.1", "12.1.1", "12.2.2", "12.3.2", "12.4.1", "12.5.1", "12.6.3", "12.8.1", "12.9.1", "13.0.1"]
77+
["11.8.0", "12.0.1", "12.1.1", "12.2.2", "12.3.2", "12.4.1", "12.5.1", "12.6.3", "12.8.1", "12.9.1", "13.0.2"]
7878
runs-on: ${{ matrix.os }}
7979
steps:
8080
- uses: actions/checkout@v4
8181
# Windows: We install Cuda on the agent (slow)
82-
- uses: N-Storm/cuda-toolkit@d68ba29a800229200a2c3f572f9e816d7f67cdb4 # v0.2.24m
82+
- uses: Jimver/cuda-toolkit@6008063726ffe3309d1b22e413d9e88fed91a2f2 # v0.2.29
8383
if: startsWith(matrix.os, 'windows')
8484
id: cuda-toolkit
8585
with:
86-
# Temporary: Use CUDA 13.0.0 for Windows until 13.0.1 is supported with this action.
87-
cuda: ${{ matrix.cuda_version == '13.0.1' && '13.0.0' || matrix.cuda_version }}
86+
cuda: ${{ matrix.cuda_version }}
8887
method: "network"
8988
# The "crt" "nvvm" and "nvptxcompiler" components are added for CUDA 13.
9089
sub-packages: ${{ format('["nvcc"{0},"cudart","cusparse","cublas","thrust","cublas_dev","cusparse_dev"]', startsWith(matrix.cuda_version, '13.') && ',"crt","nvvm","nvptxcompiler"' || '') }}

.github/workflows/test-runner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ jobs:
141141
# Windows + CUDA: Install CUDA Toolkit
142142
- name: Install CUDA Toolkit
143143
if: inputs.backend == 'cuda' && inputs.platform == 'windows'
144-
uses: Jimver/cuda-toolkit@c35baa1a18fd1fc9dcf47c5bd839bf30559c0bc3 # v0.2.24
144+
uses: Jimver/cuda-toolkit@6008063726ffe3309d1b22e413d9e88fed91a2f2 # v0.2.29
145145
with:
146146
cuda: ${{ inputs.cuda_version }}
147147
method: "network"

.github/workflows/tests-nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
# Linux x64 cross-product
5858
platform: [linux-x64]
5959
gpu_type: [T4, L40S]
60-
cuda_version: ["11.8.0", "12.6.3", "12.8.1", "13.0.1"]
60+
cuda_version: ["11.8.0", "12.6.3", "12.8.1", "13.0.2"]
6161

6262
include:
6363
# Map CUDA version to torch version and PyPI index
@@ -70,7 +70,7 @@ jobs:
7070
- cuda_version: "12.8.1"
7171
torch_version: "2.8.0"
7272
pypi_index: "https://download.pytorch.org/whl/cu128"
73-
- cuda_version: "13.0.1"
73+
- cuda_version: "13.0.2"
7474
torch_version: "2.9.1"
7575
pypi_index: "https://download.pytorch.org/whl/cu130"
7676

.github/workflows/tests-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
matrix:
6666
platform: [linux-x64]
6767
gpu_type: [T4, L40S]
68-
cuda_version: ["11.8.0", "12.8.1", "13.0.1"]
68+
cuda_version: ["11.8.0", "12.8.1", "13.0.2"]
6969

7070
include:
7171
# Map CUDA version to torch version and PyPI index
@@ -75,7 +75,7 @@ jobs:
7575
- cuda_version: "12.8.1"
7676
torch_version: "2.8.0"
7777
pypi_index: "https://download.pytorch.org/whl/cu128"
78-
- cuda_version: "13.0.1"
78+
- cuda_version: "13.0.2"
7979
torch_version: "2.9.1"
8080
pypi_index: "https://download.pytorch.org/whl/cu130"
8181

0 commit comments

Comments
 (0)