Skip to content

Commit 5c9476f

Browse files
tsuzuclaude
andcommitted
Replace setup-kustomize action with direct curl installation
- Remove dependency on third-party imranismail/setup-kustomize action - Use official Kustomize installation script via curl - Install latest version using the official installation method 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 31b56b2 commit 5c9476f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/docker.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,11 @@ jobs:
9797
run: echo "${TAGS}" | xargs -I {} cosign sign --yes {}@${DIGEST}
9898

9999
# Generate and upload manifests for tag builds (releases)
100-
- name: Setup Kustomize
100+
- name: Install Kustomize
101101
if: startsWith(github.ref, 'refs/tags/')
102-
uses: imranismail/setup-kustomize@v1
103-
with:
104-
kustomize-version: "5.6.0"
102+
run: |
103+
curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | bash
104+
sudo mv kustomize /usr/local/bin/
105105
106106
- name: Generate manifests with release image
107107
if: startsWith(github.ref, 'refs/tags/')

0 commit comments

Comments
 (0)