From 89b594730d8ac578996c61c8569927688b050c2b Mon Sep 17 00:00:00 2001 From: Dmytro Bondar Date: Sat, 27 Jan 2024 22:32:05 +0100 Subject: [PATCH] Bump stableHelmVersion --- README.md | 2 +- src/run.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cd1b8a7..76620e4 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Acceptable values are latest or any semantic version string like v3.5.0 Use this id: install ``` -> Note: When using latest version you might hit the GitHub GraphQL API hourly rate limit of 5,000. The action will then return the hardcoded default stable version (currently v3.11.1). If you rely on a certain version higher than the default, you should use that version instead of latest. +> Note: When using latest version you might hit the GitHub GraphQL API hourly rate limit of 5,000. The action will then return the hardcoded default stable version (currently v3.13.3). If you rely on a certain version higher than the default, you should use that version instead of latest. The cached helm binary path is prepended to the PATH environment variable as well as stored in the helm-path output variable. Refer to the action metadata file for details about all the inputs https://github.com/Azure/setup-helm/blob/master/action.yml diff --git a/src/run.ts b/src/run.ts index 37413e6..f3906e9 100644 --- a/src/run.ts +++ b/src/run.ts @@ -12,7 +12,7 @@ import * as core from '@actions/core' import * as http from '@actions/http-client' const helmToolName = 'helm' -const stableHelmVersion = 'v3.11.1' +const stableHelmVersion = 'v3.13.3' export async function run() { let version = core.getInput('version', {required: true})