-
Notifications
You must be signed in to change notification settings - Fork 71
/
action.yml
30 lines (30 loc) · 910 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: "Helm Chart Testing"
description: "Install the Helm chart-testing tool"
author: "The Helm authors"
branding:
color: blue
icon: anchor
inputs:
version:
description: "The chart-testing version to install (default: 3.10.1)"
required: false
default: '3.11.0'
yamllint_version:
description: "The yamllint version to install (default: 1.27.1)"
required: false
default: '1.33.0'
yamale_version:
description: "The yamale version to install (default: 3.0.4)"
required: false
default: '4.0.4'
runs:
using: composite
steps:
- uses: sigstore/cosign-installer@59acb6260d9c0ba8f4a2f9d9b48431a222b68e20 # v3.5.0
- run: |
cd $GITHUB_ACTION_PATH \
&& ./ct.sh \
--version ${{ inputs.version }} \
--yamllint-version ${{ inputs.yamllint_version }} \
--yamale-version ${{ inputs.yamale_version }}
shell: bash