Compare commits

..

1 Commits

Author SHA1 Message Date
d3fd29e614 chore(deps): update docker.io/volkerraschek/helm docker tag to v4
Some checks failed
Helm / helm-unittest (push) Failing after 6s
Helm / helm-lint (pull_request) Successful in 5s
Helm / helm-lint (push) Successful in 15s
Helm / helm-unittest (pull_request) Failing after 6s
2025-11-12 23:10:56 +00:00
5 changed files with 13 additions and 13 deletions

View File

@@ -15,7 +15,7 @@ on:
jobs: jobs:
generate-parameters: generate-parameters:
container: container:
image: docker.io/library/node:25.2.1-alpine image: docker.io/library/node:25.2.0-alpine
runs-on: runs-on:
- ubuntu-latest - ubuntu-latest
steps: steps:
@@ -23,7 +23,7 @@ jobs:
run: | run: |
apk update apk update
apk add git npm apk add git npm
- uses: actions/checkout@v5.0.1 - uses: actions/checkout@v5.0.0
- name: Generate parameter section in README - name: Generate parameter section in README
run: | run: |
npm install npm install

View File

@@ -13,7 +13,7 @@ on:
jobs: jobs:
helm-lint: helm-lint:
container: container:
image: docker.io/volkerraschek/helm:3.19.2 image: docker.io/volkerraschek/helm:4.0.0
runs-on: runs-on:
- ubuntu-latest - ubuntu-latest
steps: steps:
@@ -21,14 +21,14 @@ jobs:
run: | run: |
apk update apk update
apk add git npm apk add git npm
- uses: actions/checkout@v5.0.1 - uses: actions/checkout@v5.0.0
- name: Lint helm files - name: Lint helm files
run: | run: |
helm lint --values values.yaml . helm lint --values values.yaml .
helm-unittest: helm-unittest:
container: container:
image: docker.io/volkerraschek/helm:3.19.2 image: docker.io/volkerraschek/helm:4.0.0
runs-on: runs-on:
- ubuntu-latest - ubuntu-latest
steps: steps:
@@ -36,7 +36,7 @@ jobs:
run: | run: |
apk update apk update
apk add git npm apk add git npm
- uses: actions/checkout@v5.0.1 - uses: actions/checkout@v5.0.0
- name: Unittest - name: Unittest
run: | run: |
helm unittest --strict --file 'unittests/**/*.yaml' ./ helm unittest --strict --file 'unittests/**/*.yaml' ./

View File

@@ -15,7 +15,7 @@ on:
jobs: jobs:
markdown-link-checker: markdown-link-checker:
container: container:
image: docker.io/library/node:25.2.1-alpine image: docker.io/library/node:25.2.0-alpine
runs-on: runs-on:
- ubuntu-latest - ubuntu-latest
steps: steps:
@@ -23,7 +23,7 @@ jobs:
run: | run: |
apk update apk update
apk add git npm apk add git npm
- uses: actions/checkout@v5.0.1 - uses: actions/checkout@v5.0.0
- name: Verify links in markdown files - name: Verify links in markdown files
run: | run: |
npm install npm install
@@ -31,7 +31,7 @@ jobs:
markdown-lint: markdown-lint:
container: container:
image: docker.io/library/node:25.2.1-alpine image: docker.io/library/node:25.2.0-alpine
runs-on: runs-on:
- ubuntu-latest - ubuntu-latest
steps: steps:
@@ -39,7 +39,7 @@ jobs:
run: | run: |
apk update apk update
apk add git apk add git
- uses: actions/checkout@v5.0.1 - uses: actions/checkout@v5.0.0
- name: Lint markdown files - name: Lint markdown files
run: | run: |
npm install npm install

View File

@@ -8,7 +8,7 @@ on:
jobs: jobs:
publish-chart: publish-chart:
container: container:
image: docker.io/volkerraschek/helm:3.19.2 image: docker.io/volkerraschek/helm:4.0.0
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Install packages via apk - name: Install packages via apk
@@ -16,7 +16,7 @@ jobs:
apk update apk update
apk add git npm jq yq apk add git npm jq yq
- uses: actions/checkout@v5.0.1 - uses: actions/checkout@v5.0.0
with: with:
fetch-depth: 0 fetch-depth: 0

View File

@@ -10,7 +10,7 @@ HELM_IMAGE_FULLY_QUALIFIED=${HELM_IMAGE_REGISTRY_HOST}/${HELM_IMAGE_REPOSITORY}:
# NODE_IMAGE # NODE_IMAGE
NODE_IMAGE_REGISTRY_HOST?=docker.io NODE_IMAGE_REGISTRY_HOST?=docker.io
NODE_IMAGE_REPOSITORY?=library/node NODE_IMAGE_REPOSITORY?=library/node
NODE_IMAGE_VERSION?=25.2.1-alpine # renovate: datasource=docker registryUrl=https://docker.io depName=docker.io/library/node packageName=library/node NODE_IMAGE_VERSION?=25.2.0-alpine # renovate: datasource=docker registryUrl=https://docker.io depName=docker.io/library/node packageName=library/node
NODE_IMAGE_FULLY_QUALIFIED=${NODE_IMAGE_REGISTRY_HOST}/${NODE_IMAGE_REPOSITORY}:${NODE_IMAGE_VERSION} NODE_IMAGE_FULLY_QUALIFIED=${NODE_IMAGE_REGISTRY_HOST}/${NODE_IMAGE_REPOSITORY}:${NODE_IMAGE_VERSION}
# MISSING DOT # MISSING DOT