[ci] bump cuda-toolkit action to v0.2.35 to fix kernel cu130 publish - #1481
Merged
Conversation
The publish-kernel workflow pinned Jimver/cuda-toolkit@v0.2.21, whose CUDA link table stops at 12.8.0. The cu130 matrix leg added in the 0.3.0 release requests CUDA 13.0.0, so it failed at install with "Version not available: 13.0.0" — and because only the cu130 wheel is published to PyPI, 0.3.0 never shipped. CUDA 13.0.0 was added to the action in v0.2.27. Bump to the latest v0.2.35, which covers both 12.6.3 (cu126 leg) and 13.0.0 (cu130 leg) and natively targets Node 24.
Contributor
|
Note Gemini is unable to generate a review for this pull request due to the file types involved not being currently supported. |
Contributor
Merge ProtectionsYour pull request matches the following merge protections and will not be merged until they are valid. 🔴 PR merge requirementsWaiting for
This rule is failing.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The most recent
publish-kernelrun (0.3.0 release, #1478) failed, and 0.3.0 was never published to PyPI:Install CUDA 13.0.0→Error: Version not available: 13.0.0build_wheels)The #1478 release added the
cu130matrix leg (CUDA 13.0.0) but left the action pinned atJimver/cuda-toolkit@v0.2.21, whose CUDA link table tops out at 12.8.0. CUDA 13.0.0 wasn't added to the action until v0.2.27, so the leg could never resolve a download. Since the publish job only uploads the cu130 wheel, the entire release was blocked.Fix
Bump
Jimver/cuda-toolkit@v0.2.21→@v0.2.35(latest). v0.2.35's link table includes both12.6.3(cu126 leg) and13.0.0(cu130 leg), and it natively targets Node 24 (clearing the deprecation warning for this action).Follow-up to ship 0.3.0
This workflow only auto-publishes when
fastvideo-kernel/pyproject.toml's version changes. Merging this fix alone won't re-trigger it (version stays 0.3.0). After merge, republish via manual dispatch — everyif:gate allowsworkflow_dispatch:🤖 Generated with Claude Code