Skip to content

Commit 491558f

Browse files
committed
Use latest version of chart-testing action
1 parent 1fb454f commit 491558f

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/on-pr-lint-charts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ on:
77
- '.github/**'
88

99
jobs:
10-
lint-test:
10+
ct-lint:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout
1414
uses: actions/checkout@v1
1515

1616
- name: Run chart-testing (lint)
1717
id: lint
18-
uses: helm/chart-testing-action@v1.0.0-rc.1
18+
uses: helm/chart-testing-action@v3
1919
with:
2020
config: .ci/ct-config.yaml
2121
command: lint

.github/workflows/on-pr-test-charts.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,28 +7,28 @@ on:
77
- '.github/**'
88

99
jobs:
10-
lint-test:
10+
ct-test:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout
1414
uses: actions/checkout@v1
1515

1616
- name: Run chart-testing (lint)
1717
id: lint
18-
uses: helm/chart-testing-action@v1.0.0-rc.1
18+
uses: helm/chart-testing-action@v3
1919
with:
2020
config: .ci/ct-config.yaml
2121
command: lint
2222

2323
- name: Create kind cluster
24-
uses: helm/kind-action@v1.0.0-alpha.3
24+
uses: helm/kind-action@v3
2525
with:
2626
install_local_path_provisioner: true
2727
# Only build a kind cluster if there are chart changes to test.
2828
if: steps.lint.outputs.changed == 'true'
2929

3030
- name: Run chart-testing (install)
31-
uses: helm/chart-testing-action@v1.0.0-rc.1
31+
uses: helm/chart-testing-action@v3
3232
with:
3333
command: install
3434
config: .ci/ct-config.yaml

0 commit comments

Comments
 (0)