Skip to content

Commit eb5edeb

Browse files
authored
Prepare release v3.14.0 (helm#778)
Signed-off-by: Adrian Berger <adrian.berger@bedag.ch>
1 parent 00afaeb commit eb5edeb

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ If you have a chart in current directory and ct installed on the host then you c
9393

9494
With docker it works with:
9595

96-
docker run -it --network host --workdir=/data --volume ~/.kube/config:/root/.kube/config:ro --volume $(pwd):/data quay.io/helmpack/chart-testing:v3.7.1 ct install --chart-dirs . --charts .
96+
docker run -it --network host --workdir=/data --volume ~/.kube/config:/root/.kube/config:ro --volume $(pwd):/data quay.io/helmpack/chart-testing:v3.14.0 ct install --chart-dirs . --charts .
9797

9898
Notice that `workdir` param is important and must be the same as volume mounted.
9999

@@ -195,7 +195,7 @@ Here's a previous one for reference: https://github.com/helm/chart-testing/pull/
195195
### Create Release
196196

197197
The release workflow is [dispatched from github actions](https://github.com/helm/chart-testing/actions)
198-
Versions must start with a lower-case `v`, e. g. `v3.7.1`.
198+
Versions must start with a lower-case `v`, e. g. `v3.14.0`.
199199

200200
## Supported versions
201201

examples/docker-for-mac/my_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ set -o errexit
1818
set -o nounset
1919
set -o pipefail
2020

21-
readonly IMAGE_TAG=v3.7.1
21+
readonly IMAGE_TAG=v3.14.0
2222
readonly IMAGE_REPOSITORY="quay.io/helmpack/chart-testing"
2323

2424
main() {

examples/gke/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM quay.io/helmpack/chart-testing:v3.7.1
15+
FROM quay.io/helmpack/chart-testing:v3.14.0
1616

1717
ENV PATH /google-cloud-sdk/bin:$PATH
1818
ARG CLOUD_SDK_VERSION=221.0.0

examples/kind/.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
lint-charts:
1212
docker:
13-
- image: quay.io/helmpack/chart-testing:v3.7.1
13+
- image: quay.io/helmpack/chart-testing:v3.14.0
1414
steps:
1515
- checkout
1616
- run:

examples/kind/test/e2e-kind.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-
readonly CT_VERSION=v3.7.1
7+
readonly CT_VERSION=v3.14.0
88
readonly KIND_VERSION=v0.12.0
99
readonly CLUSTER_NAME=chart-testing
1010
readonly K8S_VERSION=v1.22.7

0 commit comments

Comments
 (0)