Skip to content

Commit c35f671

Browse files
authored
feat(helmfile): configurable helm versions (#197)
1 parent 65b7d8a commit c35f671

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.github/workflows/deploy_helmfile.yaml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,16 @@ on:
7878
required: false
7979
type: string
8080
default: ubuntu-22.04
81+
helmfileVersion:
82+
description: Helmfile version
83+
required: false
84+
type: string
85+
default: v0.171.0
86+
helmDiffVersion:
87+
description: Helm diff version
88+
required: false
89+
type: string
90+
default: v3.9.6
8191

8292

8393
secrets:
@@ -158,9 +168,9 @@ jobs:
158168
- name: setup dependencies
159169
env:
160170
# renovate: datasource=github-releases depName=helmfile/helmfile
161-
HELMFILE_VERSION: 'v0.171.0'
171+
HELMFILE_VERSION: ${{ inputs.helmfileVersion }}
162172
# renovate: datasource=github-releases depName=databus23/helm-diff
163-
HELM_DIFF_PLUGIN_VERSION: v3.9.6
173+
HELM_DIFF_PLUGIN_VERSION: ${{ inputs.helmDiffVersion }}
164174
run: |
165175
HELMFILE_VERSION_WITHOUT_PREFIX=${HELMFILE_VERSION:1}
166176

0 commit comments

Comments
 (0)