From ac5ee1fca8fba06d82bfc39af726f19ffe037a49 Mon Sep 17 00:00:00 2001 From: Teko <112829523+Teko012@users.noreply.github.com> Date: Fri, 17 Feb 2023 01:41:09 +0100 Subject: [PATCH] Update helm to v3.11.1 (#108) --- README.md | 2 +- src/run.test.ts | 2 +- src/run.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 02a862ab..cd1b8a76 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.10.2). 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.11.1). 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.test.ts b/src/run.test.ts index 60496a77..5836f3d9 100644 --- a/src/run.test.ts +++ b/src/run.test.ts @@ -73,7 +73,7 @@ describe('run.ts', () => { }) test('getLatestHelmVersion() - return the stable version of HELM since its not authenticated', async () => { - expect(await run.getLatestHelmVersion()).toBe('v3.10.2') + expect(await run.getLatestHelmVersion()).toBe('v3.11.1') }) test('walkSync() - return path to the all files matching fileToFind in dir', () => { diff --git a/src/run.ts b/src/run.ts index 809ba6e7..f4c5cbbe 100644 --- a/src/run.ts +++ b/src/run.ts @@ -13,7 +13,7 @@ import {graphql} from '@octokit/graphql' import {createActionAuth} from '@octokit/auth-action' const helmToolName = 'helm' -const stableHelmVersion = 'v3.10.2' +const stableHelmVersion = 'v3.11.1' export async function run() { let version = core.getInput('version', {required: true})