Skip to content

Commit 7e5f555

Browse files
committed
update ct to v3.11.0 / yamlint to 1.33.0 / yamale to 4.0.4
Signed-off-by: cpanato <[email protected]>
1 parent af96d80 commit 7e5f555

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.github/workflows/test-action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
ct version
1818
CT_VERSION_OUTPUT=$(ct version 2>&1 /dev/null)
1919
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'
2222
exit 1
2323
else
2424
exit 0

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ 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: `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`)
2121

2222
### Example Workflow
2323

@@ -44,15 +44,15 @@ jobs:
4444
- name: Set up Helm
4545
uses: azure/setup-helm@v3
4646
with:
47-
version: v3.14.0
47+
version: v3.14.4
4848

4949
- uses: actions/setup-python@v4
5050
with:
51-
python-version: '3.12'
51+
python-version: '3.x'
5252
check-latest: true
5353

5454
- name: Set up chart-testing
55-
uses: helm/chart-testing-action@v2.6.1
55+
uses: helm/chart-testing-action@v2.7.0
5656

5757
- name: Run chart-testing (list-changed)
5858
id: list-changed
@@ -68,7 +68,7 @@ jobs:
6868

6969
- name: Create kind cluster
7070
if: steps.list-changed.outputs.changed == 'true'
71-
uses: helm/kind-action@v1.8.0
71+
uses: helm/kind-action@v1.10.0
7272

7373
- name: Run chart-testing (install)
7474
if: steps.list-changed.outputs.changed == 'true'

action.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ inputs:
88
version:
99
description: "The chart-testing version to install (default: 3.10.1)"
1010
required: false
11-
default: '3.10.1'
11+
default: '3.11.0'
1212
yamllint_version:
1313
description: "The yamllint version to install (default: 1.27.1)"
1414
required: false
15-
default: '1.27.1'
15+
default: '1.33.0'
1616
yamale_version:
1717
description: "The yamale version to install (default: 3.0.4)"
1818
required: false
19-
default: '3.0.4'
19+
default: '4.0.4'
2020
runs:
2121
using: composite
2222
steps:

ct.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ set -o errexit
44
set -o nounset
55
set -o pipefail
66

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
1010

1111
show_help() {
1212
cat << EOF

0 commit comments

Comments
 (0)