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
8 changes: 4 additions & 4 deletions argocd-cmp/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM python:3.14-slim AS build_base
COPY --from=ghcr.io/astral-sh/uv:0.9.25 /uv /bin/uv
COPY --from=ghcr.io/astral-sh/uv:0.9.28 /uv /bin/uv

#: Build Nyl itself.
#: -----------------
Expand Down Expand Up @@ -41,7 +41,7 @@ RUN \
FROM fetch-bin-base AS argocd-bin
# Find ArgoCD releases at https://github.com/argoproj/argo-cd/releases
# renovate: datasource=github-releases depName=argocd packageName=argoproj/argo-cd
ARG ARGOCD_VERSION=v3.2.5
ARG ARGOCD_VERSION=v3.2.6
RUN curl -sSfLo /usr/local/bin/argocd https://github.com/argoproj/argo-cd/releases/download/${ARGOCD_VERSION}/argocd-linux-$(cat /BINARY_ARCH) \
&& chmod +x /usr/local/bin/argocd \
&& upx /usr/local/bin/argocd \
Expand All @@ -50,7 +50,7 @@ RUN curl -sSfLo /usr/local/bin/argocd https://github.com/argoproj/argo-cd/releas
FROM fetch-bin-base AS helm-bin
# Find Helm releases at https://github.com/helm/helm/releases
# renovate: datasource=github-releases depName=helm packageName=helm/helm
ARG HELM_VERSION=v3.19.5
ARG HELM_VERSION=v3.20.0
RUN curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 \
&& chmod 700 get_helm.sh \
&& ./get_helm.sh --version $HELM_VERSION \
Expand All @@ -69,7 +69,7 @@ RUN curl -fLO https://github.com/getsops/sops/releases/download/${SOPS_VERSION}/

FROM fetch-bin-base AS kyverno-bin
# renovate: datasource=github-releases depName=kyverno packageName=kyverno/kyverno
ARG KYVERNO_VERSION=1.16.2
ARG KYVERNO_VERSION=1.16.3
RUN \
case "$(uname -m)" in \
x86_64) KYVERNO_ARCH='x86_64' ;; \
Expand Down
4 changes: 2 additions & 2 deletions mise.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[tools]
"cargo:tire" = "0.1.2"
kyverno = "1.14.4"
uv = "0.9.25"
uv = "0.9.28"
sops = "3.11.0"
helm = "3.19.5"
helm = "3.20.0"
kubectl = "1.35.0"
"pipx:slap-cli" = "1.15.0"

Expand Down