4
0
Fork 0
mirror of https://github.com/Azure/setup-helm.git synced 2025-11-10 06:26:56 +00:00

Bump stableHelmVersion

This commit is contained in:
Dmytro Bondar 2024-01-27 22:32:05 +01:00
parent 80968fd4ae
commit 89b594730d
No known key found for this signature in database
GPG key ID: 8CC54FADB0C40187
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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})