File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Expand file tree Collapse file tree 4 files changed +9
-9
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.11 .0' ]]; then
21
- echo 'should be v3.11 .0'
20
+ if [[ $ACTUAL_VERSION != 'v3.12 .0' ]]; then
21
+ echo 'should be v3.12 .0'
22
22
exit 1
23
23
else
24
24
exit 0
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ 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.11 .0 ` )
18
+ - ` version ` : The chart-testing version to install (default: ` 3.12 .0 ` )
19
19
- ` yamllint_version ` : The ` yamllint ` version to install (default: ` 1.33.0 ` )
20
20
- ` yamale_version ` : The ` yamale ` version to install (default: ` 4.0.4 ` )
21
21
@@ -44,15 +44,15 @@ jobs:
44
44
- name : Set up Helm
45
45
46
46
with :
47
- version : v3.14.4
47
+ version : v3.17.0
48
48
49
- - uses : actions/setup-python@v5
49
+ - uses : actions/setup-python@v5.3.0
50
50
with :
51
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.7 .0
55
+ uses : helm/chart-testing-action@v2.8 .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.10 .0
71
+ uses : helm/kind-action@v1.12 .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
8
version :
9
9
description : " The chart-testing version to install (default: 3.10.1)"
10
10
required : false
11
- default : ' 3.11 .0'
11
+ default : ' 3.12 .0'
12
12
yamllint_version :
13
13
description : " The yamllint version to install (default: 1.27.1)"
14
14
required : false
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ set -o errexit
4
4
set -o nounset
5
5
set -o pipefail
6
6
7
- DEFAULT_CHART_TESTING_VERSION=3.11 .0
7
+ DEFAULT_CHART_TESTING_VERSION=3.12 .0
8
8
DEFAULT_YAMLLINT_VERSION=1.33.0
9
9
DEFAULT_YAMALE_VERSION=4.0.4
10
10
You can’t perform that action at this time.
0 commit comments