Compare commits

...

2 Commits

Author SHA1 Message Date
2b4be2c079 chore(deps): restrict updates of helm/helm to minor and patch
All checks were successful
Build / build-amd64 (push) Successful in 26s
Lint Markdown files / markdown-lint (push) Successful in 3s
Build / build-arm64 (push) Successful in 1m4s
2025-11-12 21:26:15 +01:00
3bd63b7db7 fix(ci): pass raw version as build arg 2025-11-12 21:25:11 +01:00
2 changed files with 6 additions and 2 deletions

View File

@@ -44,7 +44,7 @@ jobs:
- name: Build and push image - name: Build and push image
run: | run: |
docker buildx build \ docker buildx build \
--build-arg HELM_VERSION=${{ github.ref_name }} \ --build-arg HELM_VERSION=${{ steps.version_extraction.outputs.version_raw }} \
--file Dockerfile \ --file Dockerfile \
--platform linux/arm64 \ --platform linux/arm64 \
--provenance false \ --provenance false \
@@ -84,7 +84,7 @@ jobs:
- name: Build and push image - name: Build and push image
run: | run: |
docker buildx build \ docker buildx build \
--build-arg HELM_VERSION=${{ github.ref_name }} \ --build-arg HELM_VERSION=${{ steps.version_extraction.outputs.version_raw }} \
--file Dockerfile \ --file Dockerfile \
--platform linux/amd64 \ --platform linux/amd64 \
--provenance false \ --provenance false \

View File

@@ -31,6 +31,10 @@
], ],
"matchManagers": [ "matchManagers": [
"regex" "regex"
],
"matchUpdateTypes": [
"minor",
"patch"
] ]
} }
] ]