From c3d308d0c55d41f25565d9db5534da82dd8b07d7 Mon Sep 17 00:00:00 2001 From: Jacopo Andrea Giola Date: Sun, 8 Nov 2020 16:56:57 +0100 Subject: [PATCH] Fix action version in README (#59) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Reinhard Nägele --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b1be4a1..816151d 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ A GitHub action to turn a GitHub project into a self-hosted Helm chart repo, usi For more information on inputs, see the [API Documentation](https://developer.github.com/v3/repos/releases/#input) -- `version`: The chart-releaser version to use (default: v1.1.1) +- `version`: The chart-releaser version to use (default: v1.1.0) - `config`: Optional config file for chart-releaser - `charts_dir`: The charts directory - `charts_repo_url`: The GitHub Pages URL to the charts repo (default: `https://.github.io/`) @@ -52,7 +52,7 @@ jobs: version: v3.4.0 - name: Run chart-releaser - uses: helm/chart-releaser-action@v1.1.1 + uses: helm/chart-releaser-action@v1.1.0 env: CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" ```