Skip to content

Commit b43128a

Browse files
authored
bump ct to v3.10.0 (#134)
Signed-off-by: cpanato <[email protected]>
1 parent 649a636 commit b43128a

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/test-action.yml

Lines changed: 5 additions & 5 deletions
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.9.0' ]]; then
21-
echo 'should be v3.9.0'
20+
if [[ $ACTUAL_VERSION != 'v3.10.0' ]]; then
21+
echo 'should be v3.10.0'
2222
exit 1
2323
else
2424
exit 0
@@ -42,16 +42,16 @@ jobs:
4242
- name: Install chart-testing
4343
uses: ./
4444
with:
45-
version: 'v3.7.1'
45+
version: 'v3.8.0'
4646
yamllint_version: '1.27.1'
4747
yamale_version: '3.0.4'
4848
- name: Check install!
4949
run: |
5050
ct version
5151
CT_VERSION_OUTPUT=$(ct version 2>&1 /dev/null)
5252
ACTUAL_VERSION=$(echo "$CT_VERSION_OUTPUT" | grep Version | rev | cut -d ' ' -f1 | rev)
53-
if [[ $ACTUAL_VERSION != 'v3.7.1' ]]; then
54-
echo 'should be v3.7.1'
53+
if [[ $ACTUAL_VERSION != 'v3.8.0' ]]; then
54+
echo 'should be v3.8.0'
5555
exit 1
5656
else
5757
exit 0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
check-latest: true
5353

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

5757
- name: Run chart-testing (list-changed)
5858
id: list-changed

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: 3.9.0)"
9+
description: "The chart-testing version to install (default: 3.10.0)"
1010
required: false
11-
default: '3.9.0'
11+
default: '3.10.0'
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=3.9.0
7+
DEFAULT_CHART_TESTING_VERSION=3.10.0
88
DEFAULT_YAMLLINT_VERSION=1.27.1
99
DEFAULT_YAMALE_VERSION=3.0.4
1010

0 commit comments

Comments
 (0)