Skip to content

Commit

Permalink
Update action version to 0.2.15
Browse files Browse the repository at this point in the history
Change default CUDA version to newly added 12.4.1
  • Loading branch information
Jimver committed Apr 20, 2024
1 parent 93411bd commit 67636ff
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This action installs the [NVIDIA® CUDA® Toolkit](https://developer.nvidia.com/

**Optional** The CUDA version to install. View `src/link/windows-links.ts` and `src/link/linux-links.ts` for available versions.

Default: `'12.3.2'`.
Default: `'12.4.1'`.

### `sub-packages`

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

```yaml
steps:
- uses: Jimver/[email protected].14
- uses: Jimver/[email protected].15
id: cuda-toolkit
with:
cuda: '12.3.2'
cuda: '12.4.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: '12.3.2'
default: '12.4.1'
sub-packages:
description: 'Only installs specified subpackages, must be in the form of a JSON array. For example, if you only want to install nvcc and visual studio integration: ["nvcc", "visual_studio_integration"] double quotes required! Note that if you want to use this on Linux, ''network'' method MUST be used.'
required: false
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cuda-toolkit",
"version": "0.2.14",
"version": "0.2.15",
"description": "GitHub Action to install the NVIDIA CUDA Toolkit",
"main": "lib/main.js",
"scripts": {
Expand Down

0 comments on commit 67636ff

Please sign in to comment.