Skip to content

Commit 4aec00c

Browse files
fix(deps): update minor and patch updates
1 parent bf38dde commit 4aec00c

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

.github/workflows/python.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
- name: Set up Python 3.10
6060
uses: actions/setup-python@v5
6161
with:
62-
python-version: "3.13"
62+
python-version: "3.14"
6363

6464
- name: Bump version
6565
run: sed 's/version = ".*"/version = "${{ github.ref_name }}"/' -i pyproject.toml && git diff

argocd-cmp/Dockerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
FROM python:3.13-slim AS build_base
2-
COPY --from=ghcr.io/astral-sh/uv:0.8.13 /uv /bin/uv
1+
FROM python:3.14-slim AS build_base
2+
COPY --from=ghcr.io/astral-sh/uv:0.9.18 /uv /bin/uv
33

44
#: Build Nyl itself.
55
#: -----------------
@@ -41,7 +41,7 @@ RUN \
4141
FROM fetch-bin-base AS argocd-bin
4242
# Find ArgoCD releases at https://github.com/argoproj/argo-cd/releases
4343
# renovate: datasource=github-releases depName=argocd packageName=argoproj/argo-cd
44-
ARG ARGOCD_VERSION=v3.1.1
44+
ARG ARGOCD_VERSION=v3.2.1
4545
RUN curl -sSfLo /usr/local/bin/argocd https://github.com/argoproj/argo-cd/releases/download/${ARGOCD_VERSION}/argocd-linux-$(cat /BINARY_ARCH) \
4646
&& chmod +x /usr/local/bin/argocd \
4747
&& upx /usr/local/bin/argocd \
@@ -50,7 +50,7 @@ RUN curl -sSfLo /usr/local/bin/argocd https://github.com/argoproj/argo-cd/releas
5050
FROM fetch-bin-base AS helm-bin
5151
# Find Helm releases at https://github.com/helm/helm/releases
5252
# renovate: datasource=github-releases depName=helm packageName=helm/helm
53-
ARG HELM_VERSION=v3.18.6
53+
ARG HELM_VERSION=v3.19.4
5454
RUN curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 \
5555
&& chmod 700 get_helm.sh \
5656
&& ./get_helm.sh --version $HELM_VERSION \
@@ -60,7 +60,7 @@ RUN curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/s
6060
FROM fetch-bin-base AS sops-bin
6161
# Find SOPS releases at https://github.com/getsops/sops/releases
6262
# renovate: datasource=github-releases depName=sops packageName=getsops/sops
63-
ARG SOPS_VERSION=v3.10.2
63+
ARG SOPS_VERSION=v3.11.0
6464
RUN curl -fLO https://github.com/getsops/sops/releases/download/${SOPS_VERSION}/sops-${SOPS_VERSION}.linux.$(cat /BINARY_ARCH) \
6565
&& mv sops-${SOPS_VERSION}.linux.$(cat /BINARY_ARCH) /usr/local/bin/sops \
6666
&& chmod +x /usr/local/bin/sops \
@@ -69,7 +69,7 @@ RUN curl -fLO https://github.com/getsops/sops/releases/download/${SOPS_VERSION}/
6969

7070
FROM fetch-bin-base AS kyverno-bin
7171
# renovate: datasource=github-releases depName=kyverno packageName=kyverno/kyverno
72-
ARG KYVERNO_VERSION=1.15.1
72+
ARG KYVERNO_VERSION=1.16.1
7373
RUN \
7474
case "$(uname -m)" in \
7575
x86_64) KYVERNO_ARCH='x86_64' ;; \
@@ -84,7 +84,7 @@ RUN \
8484
#: Build the ArgoCD CMP server image.
8585
#: ----------------------------------
8686

87-
FROM python:3.13-slim AS nyl-cmp
87+
FROM python:3.14-slim AS nyl-cmp
8888
RUN apt-get update && \
8989
apt-get install -y --no-install-recommends git && \
9090
rm -rf /var/lib/apt/lists/*

mise.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[tools]
22
"cargo:tire" = "0.1.2"
33
kyverno = "1.14.4"
4-
uv = "0.8.13"
5-
sops = "3.10.2"
6-
helm = "3.18.6"
7-
kubectl = "1.33.4"
4+
uv = "0.9.18"
5+
sops = "3.11.0"
6+
helm = "3.19.4"
7+
kubectl = "1.35.0"
88
"pipx:slap-cli" = "1.15.0"
99

1010
[tasks.build-docs]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependencies = [
1818
"pyroscope-io>=0.8.11",
1919
"pyyaml>=6.0.1",
2020
"requests>=2.32.3",
21-
"stablehash>=0.2.1,<0.3.0",
21+
"stablehash>=0.3.0,<0.4.0",
2222
"structured-templates>=0.1.1",
2323
"typer>=0.12.3",
2424
"typing-extensions>=4.12.2",

uv.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)