Skip to content

Commit afea100

Browse files
authored
bump ct to v3.7.1 (#96)
Signed-off-by: cpanato <ctadeu@gmail.com> Signed-off-by: cpanato <ctadeu@gmail.com>
1 parent 09ed887 commit afea100

File tree

4 files changed

+15
-14
lines changed

4 files changed

+15
-14
lines changed

.github/workflows/test-action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ jobs:
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
@@ -37,7 +37,7 @@ jobs:
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:

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ A GitHub Action for installing the [helm/chart-testing](https://github.com/helm/
1515

1616
For 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
@@ -65,7 +66,7 @@ jobs:
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)

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ branding:
66
icon: anchor
77
inputs:
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

ct.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -o errexit
44
set -o nounset
55
set -o pipefail
66

7-
DEFAULT_CHART_TESTING_VERSION=v3.7.0
7+
DEFAULT_CHART_TESTING_VERSION=v3.7.1
88
DEFAULT_YAMLLINT_VERSION=1.27.1
99
DEFAULT_YAMALE_VERSION=3.0.4
1010

0 commit comments

Comments
 (0)