diff --git a/.github/scripts/tc-lint.sh b/.github/scripts/tc-lint.sh index 6fb8bfa3f5a3e..5a9a60ebb46f3 100755 --- a/.github/scripts/tc-lint.sh +++ b/.github/scripts/tc-lint.sh @@ -73,8 +73,12 @@ function helm_lint() { fi done <<<"$helm_lint_output" - if echo "$helm_lint_output" | grep -q "Fail:"; then - helm_lint_exit_code=1 + # TODO: If there are ci/*values.yaml files, lint those + # and skip linting the top-level values.yaml. + if [[ ! $(ls $chart_path/ci/*values.yaml) ]]; then + if echo "$helm_lint_output" | grep -q "Fail:"; then + helm_lint_exit_code=1 + fi fi if [ $helm_lint_exit_code -ne 0 ]; then diff --git a/charts/premium/nextcloud/Chart.yaml b/charts/premium/nextcloud/Chart.yaml index 75e6acafa6a7e..37e132cdc8b87 100644 --- a/charts/premium/nextcloud/Chart.yaml +++ b/charts/premium/nextcloud/Chart.yaml @@ -6,7 +6,7 @@ annotations: truecharts.org/min_helm_version: "3.11" truecharts.org/train: premium apiVersion: v2 -appVersion: 29.0.2 +appVersion: 29.0.3 dependencies: - name: common version: 24.1.5 @@ -49,4 +49,4 @@ sources: - https://hub.docker.com/r/collabora/code - https://hub.docker.com/r/nginxinc/nginx-unprivileged type: application -version: 31.3.1 +version: 31.3.2 diff --git a/charts/premium/nextcloud/values.yaml b/charts/premium/nextcloud/values.yaml index cdbafb273ddda..90f21dac09c17 100644 --- a/charts/premium/nextcloud/values.yaml +++ b/charts/premium/nextcloud/values.yaml @@ -1,7 +1,7 @@ image: repository: tccr.io/tccr/nextcloud-fpm pullPolicy: IfNotPresent - tag: v29.0.2@sha256:fcc24cb5238de69881dc4e03a2d6c16e0b60960ecfc0ddcfe63f9e97e3944d47 + tag: v29.0.3@sha256:205fe614758d8ccc2fa9d55827be6fee31dc9271959c118a1c4bf0e32092f32e nginxImage: repository: nginxinc/nginx-unprivileged pullPolicy: IfNotPresent