diff --git a/.woodpecker/lint.yml b/.woodpecker/lint.yml index c05f472..5d3a57d 100644 --- a/.woodpecker/lint.yml +++ b/.woodpecker/lint.yml @@ -14,28 +14,28 @@ pipeline: image: alpine:3.17.3 pull: true commands: - - apk add --no-cache helm + - apk add helm - helm dependency build helm-lint: image: alpine:3.17.3 pull: true commands: - - apk add --no-cache helm + - apk add helm - helm lint helm-template: image: alpine:3.17.3 pull: true commands: - - apk add --no-cache helm + - apk add helm - helm template --debug gitea-helm . helm-unittests: image: alpine:3.17.3 pull: true commands: - - apk add --no-cache make helm git bash + - apk add make helm git bash - helm plugin install --version 0.3.1 https://github.com/helm-unittest/helm-unittest - helm dependency update - make unittests @@ -44,12 +44,13 @@ pipeline: image: alpine:3.17.3 pull: true commands: - - apk add --no-cache make nodejs npm git + - apk add make nodejs npm git - make readme - git diff --exit-code --name-only README.md yaml-lint: - image: cytopia/yamllint:alpine-1 + image: alpine:3.17.3 pull: true commands: + - apk add yamllint - yamllint -f colored . diff --git a/.woodpecker/release-version.yml b/.woodpecker/release-version.yml index aff779c..1777428 100644 --- a/.woodpecker/release-version.yml +++ b/.woodpecker/release-version.yml @@ -13,7 +13,7 @@ pipeline: image: alpine:3.17.3 pull: true commands: - - apk add --no-cache git nodejs npm helm + - apk add git nodejs npm helm - helm dependency build - rm -rf tmp/ - helm package --version "${CI_COMMIT_TAG##v}" -d tmp/ ./ @@ -38,7 +38,7 @@ pipeline: image: alpine:3.17.3 pull: true commands: - - apk add --no-cache helm + - apk add helm - echo $${TOKEN} | helm registry login -u viceice --password-stdin codeberg.org/forgejo-contrib - helm push tmp/forgejo-${CI_COMMIT_TAG##v}.tgz oci://codeberg.org/forgejo-contrib secrets: diff --git a/renovate.json b/renovate.json index 20be1ea..9eece1e 100644 --- a/renovate.json +++ b/renovate.json @@ -36,6 +36,7 @@ ], "regexManagers": [ { + "description": "Update forgeo version in chart", "fileMatch": ["^Chart\\.yaml$"], "matchStrings": ["appVersion: (?.+?)\\s"], "depNameTemplate": "forgejo", @@ -43,6 +44,7 @@ "datasourceTemplate": "docker" }, { + "description": "Update helm unittest plugin", "fileMatch": ["^\\.woodpecker/[a-z-]+\\.yml$"], "matchStrings": ["helm plugin install --version (?.+?) https://github.com/helm-unittest/helm-unittest\\s"], "depNameTemplate": "helm-unittest",