Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN curl -sSfL "https://raw.githubusercontent.com/golangci/golangci-lint/${GOLAN
&& golangci-lint completion zsh | sudo tee /usr/local/share/zsh/site-functions/_golangci-lint >/dev/null

# renovate: datasource=github-releases depName=kubernetes-sigs/kind
ARG KIND_VERSION=v0.32.0
ARG KIND_VERSION=v0.33.0
RUN curl -sSfLo /tmp/kind "https://kind.sigs.k8s.io/dl/${KIND_VERSION}/kind-linux-amd64" \
&& sudo install -m 0755 /tmp/kind /usr/local/bin/kind \
&& rm /tmp/kind \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
- name: Install kind
env:
# renovate: datasource=github-releases depName=kubernetes-sigs/kind
KIND_VERSION: v0.32.0
KIND_VERSION: v0.33.0
run: |
curl -Lo ./kind "https://kind.sigs.k8s.io/dl/${{ env.KIND_VERSION }}/kind-linux-$(go env GOARCH)"
chmod +x ./kind
Expand Down
Loading