File tree 4 files changed +15
-15
lines changed
4 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 17
17
ct version
18
18
CT_VERSION_OUTPUT=$(ct version 2>&1 /dev/null)
19
19
ACTUAL_VERSION=$(echo "$CT_VERSION_OUTPUT" | grep Version | rev | cut -d ' ' -f1 | rev)
20
- if [[ $ACTUAL_VERSION != 'v3.10.1 ' ]]; then
21
- echo 'should be v3.10.1 '
20
+ if [[ $ACTUAL_VERSION != 'v3.11.0 ' ]]; then
21
+ echo 'should be v3.11.0 '
22
22
exit 1
23
23
else
24
24
exit 0
Original file line number Diff line number Diff line change @@ -15,9 +15,9 @@ A GitHub Action for installing the [helm/chart-testing](https://github.com/helm/
15
15
16
16
For more information on inputs, see the [ API Documentation] ( https://developer.github.com/v3/repos/releases/#input )
17
17
18
- - ` version ` : The chart-testing version to install (default: ` 3.10.1 ` )
19
- - ` yamllint_version ` : The ` yamllint ` version to install (default: ` 1.27.1 ` )
20
- - ` yamale_version ` : The ` yamale ` version to install (default: ` 3 .0.4` )
18
+ - ` version ` : The chart-testing version to install (default: ` 3.11.0 ` )
19
+ - ` yamllint_version ` : The ` yamllint ` version to install (default: ` 1.33.0 ` )
20
+ - ` yamale_version ` : The ` yamale ` version to install (default: ` 4 .0.4` )
21
21
22
22
### Example Workflow
23
23
@@ -44,15 +44,15 @@ jobs:
44
44
- name : Set up Helm
45
45
uses : azure/setup-helm@v3
46
46
with :
47
- version : v3.14.0
47
+ version : v3.14.4
48
48
49
49
- uses : actions/setup-python@v4
50
50
with :
51
- python-version : ' 3.12 '
51
+ python-version : ' 3.x '
52
52
check-latest : true
53
53
54
54
- name : Set up chart-testing
55
- uses : helm/chart-testing-action@v2.6.1
55
+ uses : helm/chart-testing-action@v2.7.0
56
56
57
57
- name : Run chart-testing (list-changed)
58
58
id : list-changed
68
68
69
69
- name : Create kind cluster
70
70
if : steps.list-changed.outputs.changed == 'true'
71
- uses : helm/kind-action@v1.8 .0
71
+ uses : helm/kind-action@v1.10 .0
72
72
73
73
- name : Run chart-testing (install)
74
74
if : steps.list-changed.outputs.changed == 'true'
Original file line number Diff line number Diff line change @@ -8,15 +8,15 @@ inputs:
8
8
version :
9
9
description : " The chart-testing version to install (default: 3.10.1)"
10
10
required : false
11
- default : ' 3.10.1 '
11
+ default : ' 3.11.0 '
12
12
yamllint_version :
13
13
description : " The yamllint version to install (default: 1.27.1)"
14
14
required : false
15
- default : ' 1.27.1 '
15
+ default : ' 1.33.0 '
16
16
yamale_version :
17
17
description : " The yamale version to install (default: 3.0.4)"
18
18
required : false
19
- default : ' 3 .0.4'
19
+ default : ' 4 .0.4'
20
20
runs :
21
21
using : composite
22
22
steps :
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ set -o errexit
4
4
set -o nounset
5
5
set -o pipefail
6
6
7
- DEFAULT_CHART_TESTING_VERSION=3.10.1
8
- DEFAULT_YAMLLINT_VERSION=1.27.1
9
- DEFAULT_YAMALE_VERSION=3 .0.4
7
+ DEFAULT_CHART_TESTING_VERSION=3.11.0
8
+ DEFAULT_YAMLLINT_VERSION=1.33.0
9
+ DEFAULT_YAMALE_VERSION=4 .0.4
10
10
11
11
show_help () {
12
12
cat << EOF
You can’t perform that action at this time.
0 commit comments