Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ been tested to work successfully.
**Optional** The CUDA version to install. View `src/link/windows-links.ts` and
`src/link/linux-links.ts` for available versions.

Default: `'13.1.0'`.
Default: `'13.1.1'`.

### `sub-packages`

Expand Down Expand Up @@ -106,10 +106,10 @@ The path where cuda is installed (same as `CUDA_PATH` in `GITHUB_ENV`).

```yaml
steps:
- uses: Jimver/cuda-toolkit@v0.2.30
- uses: Jimver/cuda-toolkit@v0.2.31
id: cuda-toolkit
with:
cuda: '13.1.0'
cuda: '13.1.1'

- run: echo "Installed cuda version is: ${{steps.cuda-toolkit.outputs.cuda}}"

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ inputs:
cuda:
description: 'Cuda version'
required: false
default: '13.1.0'
default: '13.1.1'
sub-packages:
description:
'Only installs specified subpackages, must be in the form of a JSON array.
Expand Down
12 changes: 12 additions & 0 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "cuda-toolkit",
"description": "GitHub Action to install the NVIDIA CUDA Toolkit",
"version": "0.2.30",
"version": "0.2.31",
"author": "Jim Verheijde",
"type": "module",
"private": true,
Expand Down
4 changes: 4 additions & 0 deletions src/links/linux-links.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ export class LinuxLinks extends AbstractLinks {
super()
// Map of cuda SemVer version to download URL
this.cudaVersionToURL = new Map([
[
'13.1.1',
'https://developer.download.nvidia.com/compute/cuda/13.1.1/local_installers/cuda_13.1.1_590.48.01_linux.run'
],
[
'13.1.0',
'https://developer.download.nvidia.com/compute/cuda/13.1.0/local_installers/cuda_13.1.0_590.44.01_linux.run'
Expand Down
8 changes: 8 additions & 0 deletions src/links/windows-links.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ export class WindowsLinks extends AbstractLinks {
private static _instance: WindowsLinks

private cudaVersionToNetworkUrl: Map<string, string> = new Map([
[
'13.1.1',
'https://developer.download.nvidia.com/compute/cuda/13.1.1/network_installers/cuda_13.1.1_windows_network.exe'
],
[
'13.1.0',
'https://developer.download.nvidia.com/compute/cuda/13.1.0/network_installers/cuda_13.1.0_windows_network.exe'
Expand Down Expand Up @@ -247,6 +251,10 @@ export class WindowsLinks extends AbstractLinks {
super()
// Map of cuda SemVer version to download URL
this.cudaVersionToURL = new Map([
[
'13.1.1',
'https://developer.download.nvidia.com/compute/cuda/13.1.1/local_installers/cuda_13.1.1_windows.exe'
],
[
'13.1.0',
'https://developer.download.nvidia.com/compute/cuda/13.1.0/local_installers/cuda_13.1.0_windows.exe'
Expand Down