File tree Expand file tree Collapse file tree 4 files changed +15
-14
lines changed
Expand file tree Collapse file tree 4 files changed +15
-14
lines changed Original file line number Diff line number Diff line change 88
99 name : Install chart-testing and test presence in path
1010 steps :
11- - uses : actions/checkout@v2
11+ - uses : actions/checkout@v3
1212 - name : Install chart-testing
1313 uses : ./
1414 - name : Check install!
1515 run : |
1616 ct version
1717 CT_VERSION_OUTPUT=$(ct version 2>&1 /dev/null)
1818 ACTUAL_VERSION=$(echo "$CT_VERSION_OUTPUT" | grep Version | rev | cut -d ' ' -f1 | rev)
19- if [[ $ACTUAL_VERSION != 'v3.7.0 ' ]]; then
20- echo 'should be v3.7.0 '
19+ if [[ $ACTUAL_VERSION != 'v3.7.1 ' ]]; then
20+ echo 'should be v3.7.1 '
2121 exit 1
2222 else
2323 exit 0
3737
3838 name : Install Custom chart-testing and test presence in path
3939 steps :
40- - uses : actions/checkout@v2
40+ - uses : actions/checkout@v3
4141 - name : Install chart-testing
4242 uses : ./
4343 with :
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/
1515
1616For more information on inputs, see the [ API Documentation] ( https://developer.github.com/v3/repos/releases/#input )
1717
18- - ` version ` : The chart-testing version to install (default: ` v3.7.0 ` )
18+ - ` version ` : The chart-testing version to install (default: ` v3.7.1 ` )
1919- ` yamllint_version ` : The chart-testing version to install (default: ` 1.27.1 ` )
2020- ` yamale_version ` : The chart-testing version to install (default: ` 3.0.4 ` )
2121
@@ -42,16 +42,17 @@ jobs:
4242 fetch-depth : 0
4343
4444 - name : Set up Helm
45- uses : azure/setup-helm@v1
45+ uses : azure/setup-helm@v3
4646 with :
47- version : v3.9.2
47+ version : v3.10.0
4848
49- - uses : actions/setup-python@v2
49+ - uses : actions/setup-python@v4
5050 with :
51- python-version : 3.7
51+ python-version : ' 3.9'
52+ check-latest : true
5253
5354 - name : Set up chart-testing
54- uses : helm/chart-testing-action@v2.2 .1
55+ uses : helm/chart-testing-action@v2.3 .1
5556
5657 - name : Run chart-testing (list-changed)
5758 id : list-changed
6566 run : ct lint --target-branch ${{ github.event.repository.default_branch }}
6667
6768 - name : Create kind cluster
68- uses : helm/kind-action@v1.2 .0
69+ uses : helm/kind-action@v1.4 .0
6970 if : steps.list-changed.outputs.changed == 'true'
7071
7172 - name : Run chart-testing (install)
Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ branding:
66 icon : anchor
77inputs :
88 version :
9- description : " The chart-testing version to install (default: v3.7.0 )"
9+ description : " The chart-testing version to install (default: v3.7.1 )"
1010 required : false
11- default : v3.7.0
11+ default : v3.7.1
1212 yamllint_version :
1313 description : " The yamllint version to install (default: 1.27.1)"
1414 required : false
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ set -o errexit
44set -o nounset
55set -o pipefail
66
7- DEFAULT_CHART_TESTING_VERSION=v3.7.0
7+ DEFAULT_CHART_TESTING_VERSION=v3.7.1
88DEFAULT_YAMLLINT_VERSION=1.27.1
99DEFAULT_YAMALE_VERSION=3.0.4
1010
You can’t perform that action at this time.
0 commit comments