From 67636ff71ff22d7925d138e91fcba29252235a63 Mon Sep 17 00:00:00 2001 From: Jimver Date: Sat, 20 Apr 2024 19:00:25 +0200 Subject: [PATCH] Update action version to 0.2.15 Change default CUDA version to newly added 12.4.1 --- README.md | 6 +++--- action.yml | 2 +- package.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2efdbf4..d199a93 100644 --- a/README.md +++ b/README.md @@ -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` @@ -62,10 +62,10 @@ The path where cuda is installed (same as `CUDA_PATH` in `GITHUB_ENV`). ```yaml steps: -- uses: Jimver/cuda-toolkit@v0.2.14 +- uses: Jimver/cuda-toolkit@v0.2.15 id: cuda-toolkit with: - cuda: '12.3.2' + cuda: '12.4.1' - run: echo "Installed cuda version is: ${{steps.cuda-toolkit.outputs.cuda}}" diff --git a/action.yml b/action.yml index 4fe23cd..75da80d 100644 --- a/action.yml +++ b/action.yml @@ -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 diff --git a/package.json b/package.json index 81e7817..a617dbb 100644 --- a/package.json +++ b/package.json @@ -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": {