Skip to content

Commit

Permalink
default action to cr v1.5.0 (#127)
Browse files Browse the repository at this point in the history
Signed-off-by: cpanato <[email protected]>

Signed-off-by: cpanato <[email protected]>
  • Loading branch information
cpanato authored Jan 6, 2023
1 parent 89fff88 commit be16258
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand All @@ -59,11 +59,9 @@ jobs:
- name: Install Helm
uses: azure/setup-helm@v3
with:
version: v3.10.0

- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.4.1
uses: helm/chart-releaser-action@v1.5.0
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
```
Expand All @@ -77,7 +75,7 @@ It does this – during every push to `main` – by checking each chart in your

```yaml
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.4.1
uses: helm/chart-releaser-action@v1.5.0
with:
charts_dir: charts
config: cr.yaml
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ branding:
icon: anchor
inputs:
version:
description: "The chart-releaser version to use (default: v1.4.1)"
description: "The chart-releaser version to use (default: v1.5.0)"
required: false
default: v1.4.1
default: v1.5.0
config:
description: "The relative path to the chart-releaser config file"
required: false
Expand Down
2 changes: 1 addition & 1 deletion cr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ set -o errexit
set -o nounset
set -o pipefail

DEFAULT_CHART_RELEASER_VERSION=v1.4.1
DEFAULT_CHART_RELEASER_VERSION=v1.5.0

show_help() {
cat << EOF
Expand Down

0 comments on commit be16258

Please sign in to comment.