From 3b0fc8596072db61bdf1c60b1c2df6200054d81d Mon Sep 17 00:00:00 2001 From: sthings user Date: Wed, 27 May 2026 08:28:09 +0000 Subject: [PATCH] fix(create-vault-k8s-auth): bump argocd module to v2.4.1 + new kebab name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit blueprints v2.4.0 exposed `CreateVaultK8sAuth` which dagger CLI mangled to `create-vault-k-8-s-auth` (digit boundaries become hyphens), so this workflow's `args: create-vault-k8s-auth` got `unknown command "create-vault-k8s-auth" for "dagger call"`. blueprints v2.4.1 renames the Go function to `CreateVaultKubernetesAuth` → kebab `create-vault-kubernetes-auth`. Requires: stuttgart-things/blueprints v2.4.1 to be tagged before merging this PR. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/call-create-vault-k8s-auth.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/call-create-vault-k8s-auth.yaml b/.github/workflows/call-create-vault-k8s-auth.yaml index 75f492f..0ceedf5 100644 --- a/.github/workflows/call-create-vault-k8s-auth.yaml +++ b/.github/workflows/call-create-vault-k8s-auth.yaml @@ -67,7 +67,7 @@ on: description: "Version of stuttgart-things/blueprints/argocd" required: false type: string - default: v2.4.0 + default: v2.4.1 permissions: contents: read @@ -94,7 +94,7 @@ jobs: verb: call module: github.com/stuttgart-things/blueprints/argocd@${{ inputs.argocd-module-version }} args: >- - create-vault-k8s-auth + create-vault-kubernetes-auth --cluster-name ${{ inputs.cluster-name }} --kubeconfig-source-file ${{ inputs.kubeconfig-source-file }} --vault-env-file ${{ inputs.vault-env-file }}