From 4c255dde26f39995a013e04d230147b2a28f62fd Mon Sep 17 00:00:00 2001 From: Oliver King Date: Fri, 1 Mar 2024 10:45:44 -0600 Subject: [PATCH] publish version 4.1.0 (#131) * publish version 4.1.0 * update version --- CHANGELOG.md | 4 ++++ README.md | 5 ++--- package.json | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 56b6a24b..bcbee417 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [4.1.0] - 2024-03-01 + +- #130 switches to use Helm published file to read latest version instead of using GitHub releases + ## [4.0.0] - 2024-02-12 - #121 update to node20 as node16 is deprecated diff --git a/README.md b/README.md index 43627ded..86d6113f 100644 --- a/README.md +++ b/README.md @@ -7,15 +7,14 @@ Install a specific version of helm binary on the runner. Acceptable values are latest or any semantic version string like v3.5.0 Use this action in workflow to define which version of helm will be used. v2+ of this action only support Helm3. ```yaml -- uses: azure/setup-helm@v4.0.0 +- uses: azure/setup-helm@v4.1.0 with: version: '' # default is latest (stable) - token: ${{ secrets.GITHUB_TOKEN }} # only needed if version is 'latest' 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.13.3). If you rely on a certain version higher than the default, you should use that version instead of latest. +> 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. 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/package.json b/package.json index a9f40dfa..386c1fee 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "setuphelm", - "version": "0.0.0", + "version": "4.1.0", "private": true, "description": "Setup helm", "author": "Anumita Shenoy",