Skip to content

Commit fce4054

Browse files
committed
fix: up rollout-status version
1 parent 13d34ac commit fce4054

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

packages/common/versions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module.exports = {
66
kubectl: "1.27.1",
77

88
// renovate: datasource=github-releases depName=socialgouv/rollout-status
9-
rolloutStatus: "1.13.5",
9+
rolloutStatus: "1.13.6",
1010

1111
// renovate: datasource=github-releases depName=stern/stern
1212
stern: "1.25.0",

packages/kontinuous/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ RUN curl --fail -sL https://get.helm.sh/helm-v${HELM_VERSION}-linux-amd64.tar.gz
4141

4242
FROM downloader as rollout-status
4343
# renovate: datasource=github-releases depName=socialgouv/rollout-status
44-
ARG ROLLOUT_STATUS_VERSION=1.13.5
44+
ARG ROLLOUT_STATUS_VERSION=1.13.6
4545
ENV ROLLOUT_STATUS_VERSION=$ROLLOUT_STATUS_VERSION
4646
RUN curl --fail -sL https://github.com/socialgouv/rollout-status/releases/download/v${ROLLOUT_STATUS_VERSION}/rollout-status-v${ROLLOUT_STATUS_VERSION}-linux-amd64 > /tmp/rollout-status \
4747
&& mv /tmp/rollout-status /usr/local/bin/rollout-status \

packages/wait-needs/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ ARG NODE_VERSION=20
44
FROM node:$NODE_VERSION as downloader
55
RUN apt-get update && \
66
DEBIAN_FRONTEND=noninteractive apt-get install -yq --no-install-recommends \
7-
curl \
8-
ca-certificates \
7+
curl \
8+
ca-certificates \
99
&& rm -rf /var/lib/apt/lists/*
1010

1111
FROM downloader as rollout-status
1212
# renovate: datasource=github-releases depName=socialgouv/rollout-status
13-
ARG ROLLOUT_STATUS_VERSION=1.13.5
13+
ARG ROLLOUT_STATUS_VERSION=1.13.6
1414
ENV ROLLOUT_STATUS_VERSION=$ROLLOUT_STATUS_VERSION
1515
RUN curl --fail -sL https://github.com/socialgouv/rollout-status/releases/download/v${ROLLOUT_STATUS_VERSION}/rollout-status-v${ROLLOUT_STATUS_VERSION}-linux-amd64 > /tmp/rollout-status \
1616
&& mv /tmp/rollout-status /usr/local/bin/rollout-status \

packages/webhook/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ RUN curl --fail -sL https://dl.k8s.io/release/v${KUBECTL_VERSION}/bin/linux/amd6
2525
&& chmod +x /usr/local/bin/kubectl
2626

2727
# renovate: datasource=github-releases depName=socialgouv/rollout-status
28-
ARG ROLLOUT_STATUS_VERSION=1.13.5
28+
ARG ROLLOUT_STATUS_VERSION=1.13.6
2929
ENV ROLLOUT_STATUS_VERSION=$ROLLOUT_STATUS_VERSION
3030
RUN curl --fail -sL https://github.com/socialgouv/rollout-status/releases/download/v${ROLLOUT_STATUS_VERSION}/rollout-status-v${ROLLOUT_STATUS_VERSION}-linux-amd64 > /tmp/rollout-status \
3131
&& mv /tmp/rollout-status /usr/local/bin/rollout-status \

packages/webhook/Dockerfile.dev

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ FROM ubuntu:$UBUNTU_VERSION
44

55
RUN apt-get update && \
66
apt-get install -y \
7-
curl \
8-
wget \
9-
git \
7+
curl \
8+
wget \
9+
git \
1010
&& rm -rf /var/lib/apt/lists/*
1111

1212
# renovate: datasource=node depName=node versioning=node
@@ -24,7 +24,7 @@ RUN curl --fail -sL https://dl.k8s.io/release/v${KUBECTL_VERSION}/bin/linux/amd6
2424
&& chmod +x /usr/local/bin/kubectl
2525

2626
# renovate: datasource=github-releases depName=socialgouv/rollout-status
27-
ARG ROLLOUT_STATUS_VERSION=1.13.5
27+
ARG ROLLOUT_STATUS_VERSION=1.13.6
2828
ENV ROLLOUT_STATUS_VERSION=$ROLLOUT_STATUS_VERSION
2929
RUN curl --fail -sL https://github.com/socialgouv/rollout-status/releases/download/v${ROLLOUT_STATUS_VERSION}/rollout-status-v${ROLLOUT_STATUS_VERSION}-linux-amd64 > /tmp/rollout-status \
3030
&& mv /tmp/rollout-status /usr/local/bin/rollout-status \

0 commit comments

Comments
 (0)