Skip to content

Commit fb8fa40

Browse files
Update default helm version to 3.18.3 (#194)
* Update default helm version to 3.18.3 * Update default version everywhere --------- Co-authored-by: Suneha Bose <[email protected]>
1 parent 0d09729 commit fb8fa40

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Acceptable values are latest or any semantic version string like v3.5.0 Use this
1414
```
1515
1616
> [!NOTE]
17-
> If something goes wrong with fetching the latest version the action will use the hardcoded default stable version (currently v3.13.3). If you rely on a certain version higher than the default, you should explicitly use that version instead of latest.
17+
> If something goes wrong with fetching the latest version the action will use the hardcoded default version (currently v3.18.3). If you rely on a certain version higher than the default, you should explicitly use that version instead of latest.
1818
1919
The cached helm binary path is prepended to the PATH environment variable as well as stored in the helm-path output variable.
2020
Refer to the action metadata file for details about all the inputs https://github.com/Azure/setup-helm/blob/master/action.yml

src/run.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import * as toolCache from '@actions/tool-cache'
1010
import * as core from '@actions/core'
1111

1212
const helmToolName = 'helm'
13-
export const stableHelmVersion = 'v3.13.3'
13+
export const stableHelmVersion = 'v3.18.3'
1414

1515
export async function run() {
1616
let version = core.getInput('version', {required: true})

0 commit comments

Comments
 (0)