4 Commits

Author SHA1 Message Date
9fb56b2e24 Merge pull request 'chore(deps): update alpine/helm docker tag to v4' (#5) from renovate/alpine-helm-4.x into main
All checks were successful
changelog / changelog (push) Successful in 13s
check-and-test / check-and-test (push) Successful in 54s
Reviewed-on: #5
2026-01-20 16:52:03 +00:00
d5e4ee125e chore(fix): temporarily use --verify=false for helm plugins until https://github.com/helm/helm/issues/31490 is resolved
All checks were successful
check-and-test / check-and-test (pull_request) Successful in 50s
2026-01-20 11:50:52 -05:00
ff07d41123 chore(fix): adjust action for helmv4
Some checks failed
check-and-test / check-and-test (pull_request) Failing after 17s
2026-01-20 11:46:17 -05:00
5264f5887e chore(deps): update alpine/helm docker tag to v4
Some checks failed
commitlint / check-and-test (pull_request) Successful in 18s
check-and-test / check-and-test (pull_request) Failing after 14s
2026-01-17 01:01:21 +00:00
2 changed files with 5 additions and 4 deletions

View File

@@ -21,7 +21,7 @@ jobs:
- name: Install helm
env:
# renovate: datasource=docker depName=alpine/helm
HELM_VERSION: "3.19.0"
HELM_VERSION: "4.0.5"
run: |
curl --fail --location --output /dev/stdout --silent --show-error https://get.helm.sh/helm-v${HELM_VERSION}-linux-$(dpkg --print-architecture).tar.gz | tar --extract --gzip --file /dev/stdin
mv linux-$(dpkg --print-architecture)/helm /usr/local/bin/

View File

@@ -15,7 +15,7 @@ env:
jobs:
check-and-test:
runs-on: ubuntu-latest
container: alpine/helm:3.19.0
container: alpine/helm:4.0.5
steps:
- name: install tools
run: |
@@ -25,12 +25,13 @@ jobs:
- name: install chart dependencies
run: helm dependency build
- name: lint
run: helm lint
run: helm lint .
- name: template
run: helm template --debug gitea-helm .
- name: prepare unit test environment
# remove `--verify=false` once https://github.com/helm/helm/issues/31490 is resolved
run: |
helm plugin install --version ${{ env.HELM_UNITTEST_VERSION }} https://github.com/helm-unittest/helm-unittest
helm plugin install --version ${{ env.HELM_UNITTEST_VERSION }} https://github.com/helm-unittest/helm-unittest --verify=false
git submodule update --init --recursive
- name: unit tests
env: